/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Lenity - Charity & Donation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. What We Do css
08. Our Causes css
09. Why Choose Us css
10. Our Program css
11. Scrolling Ticker css
12. Our Features css
13. Donate Now css
14. How It Work css
15. Our Testimonials css
16. Our Gallery css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Projects Page css
25. Project Single css
26. Team Page css
27. Team Single css
28. Testimonial Page css
29. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. Donation Page css
34. 404 Error Page css
35. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #143296;
	--secondary-color		: #F8F8F8;
	--text-color			: #4b4b4b;
	--accent-color			: #2C895C;
	--accent-color-alt		: #589CD1;
	--electric-blue			: #0050ff;
	--deep-slate			: #0b1f33;
	--hero-beige			: #f5f0e3;
	--soft-stone			: #f8f3e8;
	--white-color			: #FFFFFF;
	--divider-color			: #020D1914;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Inter", serif;
	--accent-font			: "Onest", serif;
}

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

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	background-color: var(--white-color);
	color: var(--text-color);
}

/* Inner pages (all except home) use brand backgrounds without gradients */
body.is-inner{
	background-color: #f4e9c0; /* light yellow */
}

body.is-inner .page-header{
	background: var(--primary-color);
	color: #ffffff;
}

body.is-inner .page-header h1,
body.is-inner .page-header .breadcrumb a,
body.is-inner .page-header .breadcrumb-item.active{
	color: #ffffff;
}

body.is-inner .page-header .breadcrumb-item+.breadcrumb-item::before{
	color: rgba(255,255,255,0.7);
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

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

p{
	line-height: 1.8em;
	margin-bottom: 1.5em;
}

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

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;
}

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

.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;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.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;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
    color: var(--white-color);
	font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    border: none;
    padding: 20px 54px 20px 24px;
	border-radius: 100px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: linear-gradient(90deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
    color: var(--white-color);
}

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

.btn-default:hover::before{
	transform: translate(-21px, -50%);
}

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

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

/* Outline button (used for "Load more", secondary CTAs) */
.btn-outline{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: transparent;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: 2px solid rgba(20, 50, 150, 0.35);
	padding: 16px 28px;
	border-radius: 100px;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

.btn-outline:hover{
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
	text-decoration: none;
}

.btn-outline:focus{
	outline: none;
}

.readmore-btn{
	position: relative;
	color: var(--accent-color);
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;	
	line-height: 1.8em;
	text-transform: capitalize;
	display: inline-block;
	padding-right: 40px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn::before{
	content: '\f061';
    position: absolute;
	right: 0;
    top: 50%;
	font-family: 'Font Awesome 6 Free';
	font-size: 14px;
	line-height: normal;
	color: var(--white-color);
	width: 30px;
	height: 30px;
	background-color: var(--accent-color);
	background-position: center center;
	border-radius: 50%;
	display: flex;
	align-items: center;
    justify-content: center;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn:hover::before{
	background-color: var(--primary-color);
	transform: translate(0, -50%);
}

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

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-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);
	}
}

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

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

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

.section-title h3{
	position: relative;
	display: inline-block;
	font-size: 15px;
    font-weight: 500;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 0;
    margin-bottom: 15px;
}

/* Icon removed - subheaders removed from all pages */
.section-title h3::before{
	display: none;
}

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

.section-title h2{
	font-size: 50px;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

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

.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{
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

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;
	border-radius: 0;
}

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

.navbar{
	padding: 20px 0;
	align-items: center;
}

.navbar-light .navbar-toggler{
	border: 1px solid rgba(2, 13, 25, 0.2);
	border-radius: 10px;
	padding: 8px 10px;
}

.navbar-light .navbar-toggler-icon{
	background-image: none;
	position: relative;
	width: 18px;
	height: 2px;
	background-color: transparent;
	box-shadow: none;
}

.navbar-light .navbar-toggler-icon::before,
.navbar-light .navbar-toggler-icon::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 999px;
	background-color: var(--primary-color);
}

.navbar-light .navbar-toggler-icon{
	background-color: var(--primary-color);
}

.navbar-light .navbar-toggler-icon::before{
	top: -6px;
}

.navbar-light .navbar-toggler-icon::after{
	top: 6px;
}

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

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

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

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

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	padding: 14px 20px !important;
	color: var(--white-color);
	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(--accent-color);
}

/* ------------------------------------------------------------------
   Modern white navigation override
------------------------------------------------------------------ */
header.main-header.main-header--white{
	position: relative;
	background-color: var(--white-color);
	border-bottom: 1px solid #f3f4f6;
	box-shadow: 0 6px 20px rgba(9, 22, 39, 0.08);
}

header.main-header.main-header--white .header-sticky{
	position: relative;
	background-color: var(--white-color);
	border-bottom: 1px solid #f3f4f6;
	box-shadow: 0 6px 20px rgba(9, 22, 39, 0.08);
}

header.main-header.main-header--white .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: var(--white-color);
	border-bottom: 1px solid #f3f4f6;
	box-shadow: 0 8px 26px rgba(9, 22, 39, 0.12);
}

header.main-header.main-header--white .header-sticky.active .navbar{
	padding: 12px 0;
}

header.main-header.main-header--white .navbar{
	padding: 16px 0;
	display: flex;
	align-items: center;
}

header.main-header.main-header--white .brand-logo{
	max-height: 64px;
}

header.main-header.main-header--white .navbar-nav .nav-link{
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.85rem;
	color: var(--primary-color);
	padding: 0.35rem 0.65rem;
	position: relative;
}

header.main-header.main-header--white .navbar-nav .nav-item.active > .nav-link,
header.main-header.main-header--white .navbar-nav .nav-link:focus,
header.main-header.main-header--white .navbar-nav .nav-link:hover{
	color: var(--accent-color);
}

/* Keep Bootstrap dropdown caret visible on active dropdown items */
header.main-header.main-header--white .navbar-nav .nav-item.active > .nav-link:not(.dropdown-toggle)::after{
	display: none;
}

/* Ensure dropdown indicator is consistent across pages */
header.main-header.main-header--white .navbar-nav .dropdown-toggle::after{
	display: inline-block;
	margin-left: 0.35rem;
	vertical-align: 0.15em;
}

header.main-header.main-header--white .dropdown-menu{
	border: 1px solid rgba(2,13,25,0.08);
	border-radius: 14px;
	box-shadow: 0 18px 30px rgba(2, 13, 25, 0.12);
}

header.main-header.main-header--white .dropdown-item{
	font-weight: 600;
	color: var(--primary-color);
	padding: 0.6rem 1rem;
}

header.main-header.main-header--white .dropdown-item:hover{
	background-color: rgba(255, 109, 0, 0.08);
	color: var(--accent-color);
}

.nav-actions{
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.nav-icon{
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(2,13,25,0.16);
	background: transparent;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.nav-icon:hover,
.nav-icon:focus{
	color: var(--accent-color);
	border-color: var(--accent-color);
	background-color: rgba(255, 109, 0, 0.08);
}

.nav-social{
	display: flex;
	gap: 0.4rem;
}

.nav-social a{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f5f5f5;
	border: 1px solid rgba(2,13,25,0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 0.9rem;
	transition: all 0.2s ease;
}

.nav-social a:hover{
	background: rgba(255, 109, 0, 0.15);
	color: var(--accent-color);
	border-color: transparent;
}

.nav-cta{
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-color-alt) 100%);
	color: #fff;
	border-radius: 999px;
	padding: 0.55rem 1.35rem;
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border: none;
	box-shadow: 0 10px 24px rgba(20, 50, 150, 0.25);
	white-space: nowrap;
}

.nav-cta:hover{
	background: linear-gradient(90deg, var(--accent-color-alt) 0%, var(--accent-color) 100%);
	color: #fff;
}

.nav-language .dropdown-toggle{
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	width: auto;
	height: auto;
}

@media (max-width: 991px){
	header.main-header.main-header--white .navbar{
		flex-wrap: wrap;
	}

	.nav-actions{
		margin-top: 1rem;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.nav-social{
		width: 100%;
		justify-content: flex-start;
	}
}

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

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

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

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(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(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

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

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

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

.contact-now-box{
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box{
	position: relative;
	display: inline-block;
	margin-right: 15px;
	padding-bottom: 5px;
}

.contact-now-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 22px;
	height: 22px;
	z-index: 0;
}

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

.contact-now-box-content{
	width: calc(100% - 46px);
}

.contact-now-box-content p{
	color: var(--white-color);
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-now-box-content h3{
	color: var(--accent-color);
	font-size: 20px;
}

.contact-now-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover{
	color: var(--white-color);
}

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

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

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

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-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(--accent-color);
}

.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: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--white-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(--primary-color);
}

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

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

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

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

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

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 50px 0 10px;
}

.hero--impact{
	background: #1a6bca;
	background-image: none !important;
	padding: 50px 0 10px;
}

.hero-content--impact{
	max-width: 640px;
}

.hero-eyebrow,
.section-eyebrow{
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 14px;
	display: inline-block;
}

.hero-title{
	font-size: clamp(2.5rem, 4vw, 3.75rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 1.5rem;
}

.hero-lead{
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255,255,255,0.95);
	margin-bottom: 2rem;
}

.hero-actions{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.btn-outline-ghost{
	border: 1px solid rgba(20, 50, 150, 0.25);
	color: var(--primary-color);
	padding: 0.55rem 1.35rem;
	border-radius: 999px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.btn-outline-ghost:hover{
	background: rgba(88, 156, 209, 0.1);
	color: var(--primary-color);
}

.hero-metrics{
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.hero-metrics .metric-label{
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	color: rgba(255,255,255,0.7);
	display: block;
	margin-bottom: 0.3rem;
}

.hero-metrics p{
	margin: 0;
	color: #fff;
	font-weight: 600;
	line-height: 1.4;
}

.hero-illustration{
	position: relative;
	background: transparent;
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 20px 50px rgba(10, 24, 43, 0.12);
	border: none;
}

.hero-illustration img{
	border-radius: 18px;
	width: 100%;
	height: auto;
}

.hero-illustration .carousel-item img{
	border-radius: 18px;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.hero-illustration .carousel{
	border-radius: 24px;
	overflow: hidden;
}

.hero-illustration .carousel-control-prev,
.hero-illustration .carousel-control-next{
	width: 40px;
	height: 40px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	opacity: 0.7;
}

.hero-illustration .carousel-control-prev:hover,
.hero-illustration .carousel-control-next:hover{
	opacity: 1;
}

.hero-illustration .carousel-indicators{
	bottom: 10px;
	margin-bottom: 0;
}

.hero-illustration .carousel-indicators button{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-illustration .carousel-indicators button.active{
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.hero-badge{
	position: absolute;
	bottom: -20px;
	right: 30px;
	background: var(--accent-color);
	color: #0b2915;
	border-radius: 16px;
	padding: 16px 20px;
	box-shadow: 0 15px 35px rgba(17,77,36,0.25);
	max-width: 220px;
}

.hero-badge__label{
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	margin-bottom: 0.3rem;
	color: #0b2915;
}

.hero-badge span{
	font-weight: 700;
	font-size: 0.95rem;
	color: #0b2915;
}

.hero::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%),linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	padding: 180px 0 110px;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, rgba(2, 13, 25, 0) 16.33%, rgba(2, 13, 25, 0.8) 100%),linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 70px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	margin-right: 100px;
	z-index: 2;
}

.hero-content .section-title{
	margin-bottom: 60px;
}

.hero-content .section-title h3,
.hero-content .section-title h1,
.hero-content .section-title p{
	color: var(--white-color);
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 60px;
}

.video-play-button{
	display: flex;
	align-items: center;
}

.video-play-button p{
	color: var(--white-color);
	font-weight: 700;
	text-transform: capitalize;
	margin: 0 10px 0 0;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background-color: var(--primary-color);
}

.video-play-button a i{
	font-size: 22px;
	color: var(--white-color);
}

/* Spotlight */
.section-spotlight{
	padding: 40px 0 24px;
}

.section-spotlight--electric{
	background: linear-gradient(135deg, #1a6bca 0%, #143296 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.section-spotlight--electric::after{
	content: '';
	position: absolute;
	right: -5%;
	bottom: -20%;
	width: 320px;
	height: 320px;
	background: rgba(255,255,255,0.12);
	border-radius: 50%;
	filter: blur(4px);
}

.section-spotlight .spotlight-title{
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 800;
	margin-bottom: 1rem;
}

.section-spotlight .spotlight-copy{
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1.75rem;
	opacity: 0.9;
}

.spotlight-actions{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	z-index: 2;
	position: relative;
}

.btn-outline-light{
	border: 1px solid rgba(255,255,255,0.8);
	color: #fff;
	padding: 0.6rem 1.5rem;
	border-radius: 999px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.btn-outline-light:hover{
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.btn-link-light{
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.spotlight-card{
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 25px 45px rgba(5, 16, 33, 0.25);
	position: relative;
	z-index: 2;
}

.spotlight-card img{
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.spotlight-card__body{
	padding: 30px;
}

.spotlight-card__body h3{
	font-size: 1.6rem;
	margin: 0.5rem 0 1rem;
}

.spotlight-card__body p{
	margin-bottom: 1rem;
	color: #333;
}

.spotlight-copy-block{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
}

.spotlight-copy-block .spotlight-actions{
	justify-content: center;
}

/* Campaigns */
.section-campaigns{
	background: var(--hero-beige);
	color: var(--deep-slate);
	padding: 100px 0;
	position: relative;
}

.campaigns-main-title{
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: var(--deep-slate);
	margin-bottom: 40px;
	letter-spacing: 0.05em;
}

.campaign-tabs{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	margin-bottom: 50px;
}

.campaign-tab{
	background: #f5d742;
	border: 1px solid #f5d742;
	color: var(--deep-slate);
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: none;
	font-family: var(--default-font);
}

.campaign-tab:hover{
	background: #f6dc5a;
	border-color: #f6dc5a;
}

.campaign-tab.active{
	background: var(--hak-primary);
	color: #fff;
	border-color: var(--hak-primary);
	font-weight: 700;
}

.campaign-tab.active:hover{
	background: #1f49c0;
	border-color: #1f49c0;
}

.campaigns-content-wrapper{
	margin-bottom: 0;
}

.campaign-illustration{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.campaign-circle{
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #fff;
	overflow: hidden;
	position: relative;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.campaign-circle img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.campaign-placeholder{
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.campaign-placeholder-content{
	width: 80%;
	height: 80%;
	position: relative;
}

.campaign-eye{
	width: 120px;
	height: 80px;
	background: #0050ff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.campaign-content{
	min-height: 400px;
}

.campaign-tab-content{
	display: none;
	animation: fadeIn 0.4s ease-in-out;
}

.campaign-tab-content.active{
	display: block;
}

@keyframes fadeIn{
	from{
		opacity: 0;
		transform: translateY(10px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

.campaign-title{
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--deep-slate);
	margin-bottom: 30px;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.campaign-description{
	margin-bottom: 30px;
}

.campaign-description p{
	color: var(--text-color);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.campaign-link{
	color: var(--hak-primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.campaign-link:hover{
	color: var(--deep-slate);
	text-decoration: underline;
}

.campaign-link i{
	font-size: 0.85rem;
	transition: transform 0.3s ease;
}

.campaign-link:hover i{
	transform: translateX(5px);
}

.section-title--contrast h2{
	color: var(--deep-slate);
	font-weight: 800;
	font-size: clamp(2rem, 3vw, 3rem);
}

.section-title--contrast p{
	color: var(--text-color);
	line-height: 1.8;
}

.campaign-tags{
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 2rem;
}

.campaign-tags span{
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.07);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
}

.campaign-grid{
	display: grid;
	gap: 1.5rem;
}

.campaign-card{
	background: rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: 0 18px 35px rgba(2, 13, 25, 0.35);
}

.campaign-card__body h3{
	font-size: 1.5rem;
	margin: 0.35rem 0 0.5rem;
}

.campaign-card__body p{
	color: rgba(255,255,255,0.85);
	line-height: 1.6;
}

.btn-link{
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent-color-alt);
}

.btn-link:hover{
	color: var(--accent-color);
}

@media (max-width: 991px){
	.campaigns-main-title{
		margin-bottom: 40px;
		text-align: center;
	}
	
	.campaign-circle{
		max-width: 240px;
		margin: 0 auto;
	}
	
	.campaign-content{
		min-height: auto;
		margin-top: 30px;
	}
	
	.campaign-tabs{
		gap: 10px;
	}
	
	.campaign-tab{
		padding: 10px 18px;
		font-size: 0.85rem;
		flex: 1 1 calc(50% - 5px);
		min-width: 140px;
	}
}

@media (max-width: 575px){
	.campaign-tab{
		flex: 1 1 100%;
	}
	
	.campaign-circle{
		max-width: 200px;
	}
}

/* Dual CTA */
.section-dual-cta{
	padding: 90px 0;
	background: var(--hero-beige);
	background-image: url('../images/bg_elements.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.cta-card{
	height: 100%;
	border-radius: 32px;
	padding: 40px;
	box-shadow: 0 25px 45px rgba(9,22,33,0.08);
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.cta-card--blue{
	background: #0f5ae0;
	color: #fff;
}

.cta-card--stone{
	background: var(--soft-stone);
	color: var(--deep-slate);
}

.cta-card h3{
	font-size: 1.8rem;
	font-weight: 800;
	margin: 0;
}

.cta-card p{
	margin: 0;
	line-height: 1.7;
}

.cta-list{
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: 600;
	line-height: 1.8;
}

.cta-list li::before{
	content: '•';
	margin-right: 8px;
	color: var(--accent-color);
}

.cta-card--blue .cta-list li::before{
	color: #fff;
}

.cta-actions{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* News */
.section-news{
	padding: 20px 0;
	background: var(--hero-beige);
}

.section-news .section-title h2{
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 800;
	color: var(--deep-slate);
}

.news-grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.news-card{
	background: #fff;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(9,22,33,0.12);
	display: flex;
	flex-direction: column;
}

.news-card img{
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.news-card__body{
	padding: 24px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.news-card__body h3{
	font-size: 1.25rem;
	margin: 0;
	color: var(--deep-slate);
}

.news-card__body p{
	margin: 0;
	color: var(--text-color);
	line-height: 1.6;
}

.btn-link-news{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #2C895C;
	text-decoration: none;
}

.btn-link-news:hover{
	color: #2C895C;
	opacity: 0.85;
	text-decoration: none;
}

.news-arrow{
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #6ec051;
	color: var(--deep-slate);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	transition: transform 0.25s ease;
}

.btn-link-news:hover .news-arrow{
	transform: translateX(4px);
}

.news-date{
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(11,31,51,0.6);
}

/************************************/
/***      Partners Section css     ***/
/************************************/

.section-partners{
	padding: 80px 0;
	background: var(--white-color);
}

.section-partners .section-title h2{
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 800;
	color: var(--deep-slate);
}

.partner-logo{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	height: 100%;
	min-height: 120px;
	background: #ffffff;
	border: 1px solid rgba(2,13,25,0.08);
	border-radius: 14px;
	transition: all 0.3s ease-in-out;
}

.partner-logo img{
	max-width: 100%;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.partner-logo:hover img{
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

/* Keep partner logos consistent on dark/colored sections too */
.section-partners{
	background: transparent;
}

/************************************/
/***      Stats Section css        ***/
/************************************/

.section-stats{
	padding: 80px 0;
	background: var(--white-color);
}

.stats-item{
	text-align: center;
	padding: 30px 20px;
	transition: all 0.3s ease-in-out;
}

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

.stats-item h2{
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 800;
	color: var(--hak-accent);
	margin-bottom: 10px;
	line-height: 1.1;
}

.stats-item h2 .counter{
	color: var(--hak-accent);
}

.stats-item p{
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--deep-slate);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}

@media (max-width: 991px){
	.stats-item{
		padding: 25px 15px;
		margin-bottom: 20px;
	}

	.stats-item h2{
		font-size: 2.5rem;
	}

	.stats-item p{
		font-size: 0.95rem;
	}
}

@media (max-width: 767px){
	.stats-item h2{
		font-size: 2rem;
	}

	.stats-item p{
		font-size: 0.85rem;
	}
}

@media (max-width: 991px){
	.hero--impact{
		padding: 120px 0 80px;
	}

	.hero-actions{
		justify-content: flex-start;
	}

	.hero-illustration{
		margin-top: 1.5rem;
	}

	.hero-badge{
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 1rem;
	}

	.section-campaigns{
		padding: 70px 0;
	}

	.section-dual-cta{
		padding: 70px 0;
	}
}

.hero-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 40px;
}

.hero-list{
	position: relative;
}

.hero-list:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    height: 100%;
    width: 1px;
    background: var(--dark-divider-color);
}

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

.hero-list ul li{
	background: url('../images/icon-check.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 35px;
	margin-bottom: 20px;
}

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

.hero-help-families{
	max-width: 260px;
}

.hero-help-families h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.hero-help-families p{
	color: var(--white-color);
	line-height: 1.4em;
	margin: 0;
}

/************************************/
/***      	05. About Us css      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-images{
	position: relative;
	padding: 0 0 190px 110px;
	margin-right: 30px;
}

.about-img-1,
.about-img-2{
	border-radius: 30px;
	overflow: hidden;
}

.about-img-1 figure,
.about-img-2 figure{
	display: block;
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	object-fit: cover;
}

.about-img-1 img{
	aspect-ratio: 1 / 0.95;
}

.about-img-2{
	position: absolute;
	max-width: 412px;
	bottom: 0;
	left: 0;
	border: 15px solid var(--white-color);
	z-index: 1;
	overflow: hidden;
}

.about-img-2 img{
	aspect-ratio: 1 / 0.86;
}

.need-fund-box{
	position: absolute;
	right: 0;
	bottom: 15px;
	max-width: 165px;
	background-color: var(--accent-color);
	border-radius: 13px;
	padding: 18px;
    text-align: center;
	overflow: hidden;
}

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

.need-fund-box:hover:before{
	top: auto;
    height: 100%;
}

.need-fund-box img{
	position: relative;
	width: 100%;
	max-width: 60px;
	margin-bottom: 10px;
	z-index: 1;
}

.need-fund-box p{
	position: relative;
	text-transform: capitalize;
	color: var(--white-color);
	font-weight: 600;
	margin: 0;
	z-index: 1;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.about-us-body-content{
	width: calc(55% - 30px);
}

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

.about-support-box .icon-box{
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.about-support-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.about-support-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.about-support-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-support-content p{
	margin: 0;
}

.helped-fund-item{
	position: relative;
	width: calc(45% - 30px);
	padding: 0 30px 30px;
	text-align: center;
}

.helped-fund-item:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--secondary-color);
	display: inline-block;
    mask-image: url('../images/helped-fund-box-mask.svg');
    mask-size: contain;
    mask-position: bottom center;
    mask-repeat: no-repeat;
	z-index: 0;
}

.helped-fund-img{
	position: relative;
	margin-bottom: 20px;
	z-index: 1;
}

.helped-fund-img figure{
	max-width: 120px;
	display: inline-block;
	border-radius: 100px;
}

.helped-fund-img img{
	width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;
}

.helped-fund-content{
	position: relative;
	z-index: 1;
}

.helped-fund-content h2{
	color: var(--accent-color);
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
}

.helped-fund-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.helped-fund-content p{
	font-size: 14px;
	margin: 0;
}

/************************************/
/***      06. Our Service css     ***/
/************************************/

.our-services{
	background: url('../images/our-service-bg.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.service-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 0px 40px 5px #00000005;
	padding: 40px;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-content{
	margin-bottom: 30px;
}

.service-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	margin: 0;
}

.service-image{
	margin-bottom: 30px;
}

.service-image figure{
	max-width: 200px;
	border-radius: 50%;
	display: inline-block;
}

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

.service-item:hover img{
	transform: scale(1.1);
}

.section-footer-text{
	margin-top: 30px;
}

.section-footer-text p{
	font-family: var(--accent-font);
	text-align: center;
	margin-bottom: 0;
}

.section-footer-text p span{
	font-weight: 600;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 5px 10px;
	margin-right: 5px;
}

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

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

/************************************/
/***      07. What We Do css      ***/
/************************************/

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

/* Our Story - Values cards */
.value-card{
	border: 1px solid rgba(2,13,25,0.08);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(2,13,25,0.06);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.value-card:hover{
	transform: translateY(-2px);
	box-shadow: 0 14px 40px rgba(2,13,25,0.10);
	border-color: rgba(20,50,150,0.20);
}
.value-card__icon{
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(20,50,150,0.08);
	color: #143296;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex: 0 0 auto;
}
.value-card{
	padding: 0;
}
.value-card .card-body{
	padding: 18px 18px;
}

.what-we-item{
	display: flex;
	align-items: start;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

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

.what-we-item .icon-box{
	position: relative;
	padding-bottom: 8px;
	margin-right: 18px;
	flex-shrink: 0;
}

.what-we-item .icon-box:before{
	display: none;
}

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

.what-we-item .icon-box i{
	position: relative;
	font-size: 24px;
	color: var(--primary-color);
	z-index: 1;
	display: block;
}

.what-we-item-content{
	flex: 1;
	min-width: 0;
}

.what-we-item-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 6px;
	line-height: 1.3;
	color: #2C895C;
}

.what-we-item-content p{
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.what-we-do-images{
	position: relative;
	padding-left: 165px;
}

/* Outcomes section - wider portrait image */
.what-we-do .what-we-do-images{
	padding-left: 0 !important;
}

.what-we-do .what-we-do-img-1{
	width: 100%;
	max-width: 100%;
}

.what-we-do .what-we-do-img-1 figure{
	width: 100%;
}

.what-we-do .what-we-do-img-1 img{
	width: 100%;
}

.what-we-do-img-1 figure{
	display: block;
	border-radius: 30px;
}

.what-we-do-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 1.5;
	object-fit: cover;
	border-radius: 30px;
}

.what-we-do-img-2{
	position: absolute;
	bottom: 70px;
	left: 0;
	width: 100%;
	max-width: 272px;
	border: 6px solid var(--white-color);
	border-radius: 50%;
	z-index: 1;
}

.what-we-do-img-2 figure{
	display: block;
	border-radius: 50%;
}

.what-we-do-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.donate-now-box{
	position: absolute;
	top: 60px;
	left: 80px;	
    writing-mode: vertical-rl;	
	transform: rotate(-180deg);
}

.donate-now-box a{
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: var(--accent-color);
	border-radius: 10px;
	color: var(--white-color);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 40px 15px;
	transition: all 0.4s ease-in-out;
}

.donate-now-box a:hover{
	background: var(--primary-color);
}

.donate-now-box a img{
	width: 100%;
	max-width: 25px;	
	transform: rotate(90deg);
	transition: all 0.3s ease-in-out;
}

.donate-now-box a:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***      08. Our Causes css      ***/
/************************************/

.our-causes{
	background: url(../images/our-service-bg.svg), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
	padding: 100px 0 70px;
}

.causes-item{
	height: calc(100% - 30px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	margin-bottom: 30px;
}

.causes-image{
	margin-bottom: 30px;
}

.causes-image figure{
	display: block;
	border-radius: 30px;
}

.causes-image img{
	width: 100%;
	aspect-ratio: 1 / 0.822;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.causes-item:hover .causes-image img{
	transform: scale(1.1);
}

.causes-content{
	text-align: center;
	margin-bottom: 30px;
}

.causes-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.causes-content p{
	margin-bottom: 0;
}

.causes-button .btn-default{
	display: block;
	text-align: center;
	padding: 20px;
}

.causes-button .btn-default::before{
	display: none;
}

/************************************/
/***     09. Why Choose Us css     ***/
/************************************/

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

.why-choose-images{
	position: relative;
	padding: 0 65px 45px 0;
}

.why-choose-image-1 figure,
.why-choose-image-2 figure{
	display: block;
	overflow: hidden;
	border-radius: 50%;
}

.why-choose-image-1 img,
.why-choose-image-2 img{
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-image-2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 265px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
}

.why-choose-content{
	margin-left: 15px;
}

.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}

.why-choose-list ul li{
	width: calc(50% - 10px);
	background: url('../images/icon-check-dark.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 35px;
}

.why-choose-counters{
	display: flex;
	gap: 30px 50px;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.why-choose-counter-item{
	position: relative;
	width: calc(33.33% - 33.33px);
	text-align: center;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.why-choose-counter-item:nth-child(3n + 3):before,
.why-choose-counter-item:last-child:before{
	display: none;
}

.why-choose-counter-item h2{
	font-size: 50px;
	color: var(--accent-color);
	margin-bottom: 5px;
}

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

/************************************/
/***      10. Our Program css     ***/
/************************************/

.our-program{
	position: relative;
	background-image: linear-gradient(180deg, transparent 80%, var(--white-color) 20%), url(../images/our-program-bg-image.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 100px 0;
}

.our-program::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(2, 13, 25, 0.5) 17.67%, #FFFFFF 70%);
	height: 100%;
	width: 100%;
	z-index: 0;
}

.our-program .section-row{
	position: relative;
	z-index: 1;
}

.our-program .section-title h3,
.our-program .section-title h2,
.our-program .section-title p{
	color: var(--white-color);
}

.program-item{
	position: relative;
	height: calc(100% - 30px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 30px;
	z-index: 1;
}

.program-image{
	margin-bottom: 30px;
}

.program-image a{
	display: block;
	cursor: none;
}

.program-image figure{
	display: block;
	border-radius: 20px;
}

.program-image img{
	width: 100%;
	aspect-ratio: 1 / 0.701;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img{
	transform: scale(1.1);
}

.program-body{
	text-align: center;
}

.program-content{
	margin-bottom: 30px;
}

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

.program-content h3 a{
	color: inherit;
}

.program-content p{
	margin-bottom: 0;
}

.our-program .section-footer-text{
	position: relative;
	width: 100%;
	max-width: 480px;
	margin: 30px auto 0;
	z-index: 1;
}

/************************************/
/***   11. Scrolling Ticker css   ***/
/************************************/

.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 50s linear infinite;
}

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

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

.scrolling-ticker-box .scrolling-content span{
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-family: var(--accent-font);
	font-size: 100px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--white-color);
    background: var(--accent-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
}

.scrolling-ticker-box .scrolling-content span img{
	width: 44px;
	margin-right: 40px;
}

/************************************/
/***     12. Our Features css     ***/
/************************************/

.our-features{
	padding: 100px 0;
}

.our-features-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.our-features-item{
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.our-features-item:nth-child(even){
	flex-direction: column-reverse;
}

.our-features-image figure{
	display: block;
	border-radius: 30px;
}

.our-features-image img{
	width: 100%;
    aspect-ratio: 1 / 0.84;
	object-fit: cover;
	border-radius: 30px;
}

.our-features-content{
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 15px;
}

.our-features-body{
	width: calc(100% - 87px);
}

.our-features-body h2{
	color: var(--accent-color);
	font-size: 50px;
	margin-bottom: 25px;
}

.our-features-body h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.our-features-body p{
	margin: 0;
}

.our-features-content .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 7px;
}

.our-features-content .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 43px;
	height: 43px;
	z-index: 0;
}

.our-features-content .icon-box img{
	position: relative;
	width: 100%;
	max-width: 72px;
	z-index: 1;
}

/************************************/
/***      13. Donate Now css      ***/
/************************************/

.donate-now{
	position: relative;
	background: url('../images/donate-now-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 150px 0;
}

.donate-now::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 30%;
	height: 100%;
	width: 100%;
}

.intro-video-box{
	text-align: center;
	margin-right: 30px;
}

.intro-video-box .video-play-button{
	position: relative;
	display: inline-block;
	z-index: 1;
}

.intro-video-box .video-play-button a{
	width: 74px;
	height: 74px;
	margin: 0;
}

.intro-video-box .video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.intro-video-box .video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.intro-video-box .video-play-button a i{
	font-size: 30px;
}

.donar-company-slider{
	margin-top: 120px;
}

.donar-company-slider .swiper-wrapper{
	cursor: none;
	align-items: center;
}

.donar-company-logo{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #ffffff;
	border: 1px solid rgba(2,13,25,0.08);
	border-radius: 14px;
	min-height: 100px;
}

.donar-company-logo img{
	width: 100%;
	max-width: 200px;
	height: auto;
	max-height: 64px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease-in-out;
}

.donar-company-logo:hover img{
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

.donate-box{
	position: relative;
	background-color: var(--white-color);
	border-radius: 30px;
	padding: 40px;
	z-index: 1;
}

.donate-value-box{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.donate-form .donate-value{
	width: calc(33.33% - 6.66px);
}

.donate-form .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 30px;
}

.donate-form .form-control::placeholder{
	color: var(--primary-color);
	font-weight: 700;
}

.donate-value-box .donate-value input{
	position: absolute;
	left: -9999px;
}

.donate-value-box .donate-value label{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-weight: 400;
	line-height: 1.2em;
	background-color: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 20px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.donate-value-box .donate-value input[type="radio"]:hover+label,
.donate-value-box .donate-value input[type="radio"]:focus+label,
.donate-value-box .donate-value input[type="radio"]:checked+label{
	background-color: var(--accent-color);
	color: var(--white-color);
}

.donate-box .donate-form .form-group-btn .btn-default{
	width: 100%;
	display: block;
	text-align: center;
	padding: 20px;
}

.donate-box .donate-form .form-group-btn .btn-default::before{
	display: none;
}

/************************************/
/***      14. How It Work css     ***/
/************************************/

.how-it-work{
	padding: 100px 0;
}

.how-it-work-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-it-work-item{
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-it-work-item:nth-child(even){
	flex-direction: column-reverse;
}

.how-it-work-image,
.how-it-work-content{
	width: 100%;
}

.how-it-work-image figure{
	display: block;
	border-radius: 30px;
}

.how-it-work-image img{
	width: 100%;
	aspect-ratio: 1 / 0.866;
	object-fit: cover;
	border-radius: 30px;
}

.how-it-work-content{
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.how-it-work-content .icon-box{
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 30px;
	z-index: 1;
}

.how-it-work-content .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	z-index: 0;
}

.how-it-work-content .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-it-work-body h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-it-work-body p{
	margin: 0;
}

.section-footer-text.how-work-footer-text{
	margin-top: 60px;
}

/************************************/
/***   15. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	background: url('../images/testimonial-bg-image.png'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	padding: 100px 0;
}

.testimonials-image{
	position: relative;
	padding-right: 90px;
}

.testimonials-img figure{
	display: block;
	border-radius: 30px;
}

.testimonials-img img{
	width: 100%;
    aspect-ratio: 1 / 1.344;
	object-fit: cover;
	border-radius: 30px;
}

.helthcare-support-circle{
	position: absolute;
	top: 60px;
	right: 0;
	z-index: 1;
}

.helthcare-support-circle a{
	display: inline-block;
}

.helthcare-support-circle img{
	width: 100%;
	max-width: 180px;
	animation: infiniterotate 20s infinite linear;
}

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

.client-review-box{
	position: absolute;
	right: 0;
	bottom: 40px;
	background: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 0px 20px 0px #0000000D;
	overflow: hidden;
	animation: clientreviewobject 3s infinite linear alternate;
	z-index: 1;
}

@keyframes clientreviewobject{
	50%{
		right: 45px;
	}
}

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

.client-review-box:hover:before{
	top: auto;
    height: 100%;
}

.client-review-box h2{
	position: relative;
	color: var(--accent-color);
	font-size: 50px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.client-review-box p{
	position: relative;
	text-transform: uppercase;
	margin: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.client-review-box:hover h2,
.client-review-box:hover p{
	color: var(--white-color);
}

.testimonials-content{
	margin-left: 20px;
}

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

.testimonial-item{
	background-color: var(--white-color);
	box-shadow: 0px 0px 40px 5px #00000005;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 40px;
}

.testimonial-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.author-info{
	display: flex;
	align-items: center;
}

.author-image{
	margin-right: 20px;
}

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

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

.author-content{
	width: calc(100% - 80px);
}

.author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating{
	text-align: right;
}

.testimonial-rating i{
	color: var(--accent-color);
	font-size: 16px;
}

.testimonial-content p{
	margin: 0;
}

.testimonial-slider .testimonial-pagination{
    text-align: center;
	margin-top: 40px;
	padding-bottom: 4px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 8px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid transparent;
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border-color: var(--accent-color);
	height: 24px;
	width: 24px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

/************************************/
/***      16. Our Gallery css     ***/
/************************************/

.our-gallery{
	padding: 100px 0 50px;
}

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

.our-gallery-nav{
	text-align: center;
	margin-bottom: 80px;
}

.our-gallery-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;margin: 0;
}

.our-gallery-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--text-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-gallery-nav ul li a:before{
    content: '';
    position: absolute;
    top: 5px;
    right: -34px;
	background-color: var(--divider-color);
	border-radius: 50%;
	height: 8px;
	width: 8px;
}

.our-gallery-nav ul li:last-child a:before{
	display: none;
}

.our-gallery-nav ul li a.active-btn,
.our-gallery-nav ul li a:hover{
	color: var(--accent-color);
}

.gallery-item-boxes{
	display: flex;
	flex-wrap: wrap;
	left: 1px;
}

.gallery-item-box{
	width: calc(20% - 0.2px);
}

.gallery-item-box figure{
	display: block;
	width: 100%;
}

.gallery-item-box img{
	width: 100%;
	aspect-ratio: 1 / 0.921;
	object-fit: cover;
}

/************************************/
/***       17. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 50px 0 70px;
}

.post-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px 0px 40px 5px #00000005;
	padding: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-item-header{
	margin-bottom: 30px;
}

.post-item-meta{
	margin-bottom: 15px;
}

.post-item-meta ul{
	list-style: none;
	margin: 0;
	padding: 0;
} 

.post-item-meta ul li{
	color: var(--accent-color);
	text-transform: capitalize;
}

.post-item-content h2{
	font-size: 20px;
	line-height: 1.3em;
}

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

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

.post-featured-image a{
    display: block;
	border-radius: 20px;
	overflow: hidden;
	cursor: none;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.74;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

/************************************/
/***        18. Footer css        ***/
/************************************/

.main-footer{
    background: url(../images/footer-bg-mining.png), var(--primary-color);
	background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 100px 0 0;
}

.newsletter-label{
	color: var(--white-color);
	opacity: 80%;
	font-size: 14px;
	margin-bottom: 10px;
}

.main-footer-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 100px;
}

.footer-about{
	position: relative;
	width: calc(45% - 50px);
}

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

.footer-logo{
	margin-bottom: 30px;
}

.footer-logo img{
	width: 100%;
	max-width: 161px;
}

.footer-accreditation{
	margin-bottom: 30px;
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accreditation-label{
	font-size: 12px;
	color: rgba(255,255,255,0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.accreditation-logo{
	display: inline-block;
}

.accreditation-logo img{
	max-width: 120px;
	height: auto;
	opacity: 0.9;
	transition: opacity 0.3s ease-in-out;
}

.accreditation-logo:hover img{
	opacity: 1;
}

.footer-contact-detail{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.footer-contact-item{
	width: calc(50% - 15px);
	flex: 1 1 auto;
	min-width: 200px;
}

.footer-contact-item p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-contact-item h3{
	font-size: 16px;
	font-weight: 400;
	color: var(--white-color);
	line-height: 1.5;
}

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

.footer-contact-item h3 a:hover{
	color: var(--accent-color);
}

.footer-social-links{
	margin-top: 50px;
}

.footer-social-links h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

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

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

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

.footer-social-links ul li a{
	width: 36px;
	height: 36px;
	color: var(--white-color);
	background: var(--accent-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{
	color: var(--primary-color);
	background: var(--white-color);
}

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

.footer-links-box{
	width: calc(55% - 50px);
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.newsletter-form{
	width: 100%;
}

.newsletter-form .form-group{
	display: flex;
}

.newsletter-form .form-group .form-control{
	width: calc(100% - 56px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.newsletter-form .form-group .form-control:focus{
	color: var(--white-color);
}

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

.newsletter-form .form-group .form-control::-webkit-input-placeholder{
	color: var(--white-color);
	opacity: 0.8;
}

.newsletter-form .form-group .form-control::-moz-placeholder{
	color: var(--white-color);
	opacity: 0.8;
}

.newsletter-form .form-group .form-control:-ms-input-placeholder{
	color: var(--white-color);
	opacity: 0.8;
}

.newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-color);
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn i{
	font-size: 24px;
	padding: 0 2px 2px 0;
	transition: all 0.4s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover i{
	transform: rotate(25deg);
}

.footer-links{
	width: calc(30% - 33.33px);
}

.footer-links.footer-service-links{
	width: calc(40% - 33.33px);
}

.footer-links h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

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

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

.footer-links ul li a{
	color: inherit;
}

.footer-copyright{
	background-color: var(--dark-divider-color);
	padding: 20px 0;
	margin-top: 80px;
}

.copyright-text{
	text-align: center;
}

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

/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header{
    position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 235px 0 135px;
}

.page-header--our-story{
	background: url('../images/team/team_header.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.page-header::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, rgba(2, 13, 25, 0) 23.01%, rgba(2, 13, 25, 0.8) 92.29%),linear-gradient(360deg, rgba(2, 13, 25, 0) 70.82%, #020D19 101.14%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
    font-size: 63px;
    font-weight: 700;
    line-height: 1.2em;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box h1 span{
	font-weight: 700;
    color: var(--accent-color);
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	align-items: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
    font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--accent-color);
}

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

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\f111";
    font-family: "FontAwesome";
	font-size: 6px;
    color: var(--white-color);
}

.page-header-arrow{
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	text-align: center;
}

.scroll-down-arrow{
	display: inline-flex;
	width: 50px;
	height: 50px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	font-size: 20px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	animation: bounceArrow 2s infinite;
}

.scroll-down-arrow:hover{
	background: var(--white-color);
	color: var(--primary-color);
	transform: scale(1.1);
	animation: none;
}

@keyframes bounceArrow{
	0%, 20%, 50%, 80%, 100%{
		transform: translateY(0);
	}
	40%{
		transform: translateY(-10px);
	}
	60%{
		transform: translateY(-5px);
	}
}

.our-approach{
	padding: 100px 0;
	background: url('../images/our-service-bg.svg'), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}

.our-approach-box-content{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 100px;
}

.our-approach-content{
	width: calc(50% - 15px);
	padding-bottom: 200px;
}

.our-approach-image{
	width: calc(50% - 15px);
}

.our-approach-image figure{
	display: block;
	border-radius: 30px;
}

.our-approach-image img{
	width: 100%;
    aspect-ratio: 1 / 0.947;
	object-fit: cover;
	border-radius: 30px;
}

.mission-vision-box{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 970px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	box-shadow: 0px -10px 40px 5px #00000005;
	padding: 50px;
	overflow: hidden;
	z-index: 2;
}

.mission-vision-item{
	position: relative;
    width: calc(33.33% - 53.33px);
}

.mission-vision-item:before{
	content: '';
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    bottom: 0;
    right: -40px;
    height: calc(100% - 30px);
    width: 1px;
    background: var(--divider-color);
}

.mission-vision-item:nth-child(3n + 3):before{
	display: none;
}

.mission-vision-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

.mission-vision-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

.mission-vision-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 50px;
	z-index: 1;
}

.mission-vision-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.mission-vision-content p{
	margin: 0;
}

.how-we-help{
	position: relative;
	padding: 100px 0;
}

.how-we-help:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	border-radius: 0 30px 30px 0;
    height: 100%;
    width: 55%;
    z-index: -1;
}

.how-we-help-content .section-title h3,
.how-we-help-content .section-title h2,
.how-we-help-content .section-title p{
	color: var(--white-color);
}

.how-we-help-body{
	margin-bottom: 40px;
}

.how-we-help-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.how-we-help-body ul li{
	background: url('../images/icon-check.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.how-we-help-body ul li:last-child{
	margin-bottom: 0;
}

.how-we-help-btn .btn-default:after{
	background: var(--white-color);
}

.how-we-help-btn .btn-default:hover:before{
	filter: brightness(0) invert(0);
}

.how-we-help-btn .btn-default:hover{
	color: var(--primary-color);
}

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

.how-help-item{
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	padding: 20px;
	text-align: center;
}

.how-help-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.how-help-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.how-help-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.how-help-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.how-help-item-content p{
	margin: 0;
}

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

.our-fact-image figure{
	display: block;
	border-radius: 30px;
}

.our-fact-image img{
	width: 100%;
    aspect-ratio: 1 / 0.947;
	object-fit: cover;
	border-radius: 30px;
}

.our-fact-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.fact-counter-list,
.fact-body-image{
	width: calc(50% - 15px);
}

.fact-counter-item{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 35px 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

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

.fact-counter-item:hover:before{
	top: auto;
    height: 100%;
}

.fact-counter-item:last-child{
	margin-bottom: 0;
}

.fact-counter-item h2{
	position: relative;
	width: calc(58% - 5px);
	font-size: 60px;
	line-height: 1em;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.fact-counter-item:hover h2{
	color: var(--white-color);
}

.fact-counter-item p{
	position: relative;
	width: calc(42% - 5px);
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	margin: 0;
	z-index: 1;
}

.fact-counter-item:hover p{
	color: var(--white-color);
}

.fact-body-image figure{
	display: block;
	height: 100%;
	border-radius: 30px;
}

.fact-body-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 30px;
}

.our-team{
	padding: 100px 0 70px;
}

.team-item{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.team-image{
	margin-bottom: 20px;
}

.team-image a,
.team-image a figure{
	display: block;
	border-radius: 20px;
	cursor: none;
}

.team-image a img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	object-position: top;
	transition: all 0.4s ease-in-out;
}

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

.team-content{
	text-align: center;
	margin-bottom: 15px;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

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

.team-social-icon ul li:last-child{
	margin-right: 0;
}

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

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

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

.our-faqs{
	padding: 100px 0;
}

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

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

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 18px 40px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f107';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	font-size: 18px;
	font-weight: 900;
    line-height: normal;
    color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translateY(-50%) rotate(-90deg);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
	padding: 18px 40px 18px 20px;
}

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

.faqs-image{
	position: relative;
	padding-right: 145px;
	margin-left: 30px;
}

.faqs-image:before{
	content: '';
	position: absolute;
	right: 80px;
	bottom: 40px;
	width: 30px;
	height: 185px;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.faqs-img-1,
.faqs-img-2{
	border-radius: 30px;
	overflow: hidden;
} 

.faqs-img-1 figure,
.faqs-img-2 figure{
	display: block;
}

.faqs-img-1 img,
.faqs-img-2 img{
	width: 100%;
	object-fit: cover;
}

.faqs-img-2{
	max-width: 302px;
	position: absolute;
	top: 140px;
	right: 0;
	border: 8px solid var(--white-color);
	border-radius: 30px;
	z-index: 1;
}

.faqs-img-1 img{
	aspect-ratio: 1 / 1.614;
}

.faqs-img-2 img{
	aspect-ratio: 1 / 1.1;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.why-choose-us.service-why-choose-us{
	background-color: var(--secondary-color);
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

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

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

.page-sidebar-catagery-list{
	border: 1px solid var(--divider-color);
    border-radius: 30px;
    margin-bottom: 60px;
	box-shadow: 0px -10px 40px 5px #00000005;
	overflow: hidden;
}

.page-sidebar-catagery-list h3{
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 20px 30px;
}

.page-sidebar-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-sidebar-catagery-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

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

.page-sidebar-catagery-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--text-color);
	padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.page-sidebar-catagery-list ul li a:hover{
    color: var(--primary-color);
}

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

.page-sidebar-catagery-list ul li a:hover:before{
	filter: brightness(0) invert(0);
}

.sidebar-cta-box{
	position: relative;
	background-image: url(../images/sidebar-cta-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 30px;
	text-align: center;
	padding: 40px;
    overflow: hidden;
	z-index: 1;
}

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

.sidebar-cta-box .icon-box,
.sidebar-cta-content{
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.sidebar-cta-box .icon-box img{
	width: 100%;
	max-width: 92px;
}

.sidebar-cta-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.sidebar-cta-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.service-feature-image{
	margin-bottom: 40px;
}

.service-feature-image figure{
	display: block;
	border-radius: 30px;
}

.service-feature-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.598;
	border-radius: 30px;
}

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

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

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

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

.service-entry ul{
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 30px;
    list-style: none;
	padding: 40px;
    margin: 40px 0;
}

.service-entry ul li{
	background: url(../images/icon-check-dark.svg) no-repeat center left;
    background-size: 26px auto;
	width: calc(33.33% - 20px);
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
	padding-left: 30px;
}

.bringing-quality-box,
.service-entry-content-list,
.service-entry-steps{
	margin-top: 60px;
}

.service-entry-content-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-entry-content-item{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.service-entry-content-item:nth-child(even){
	flex-direction: row-reverse;
}

.service-entry-image,
.service-entry-content-box{
	width: calc(50% - 15px);
}

.service-entry-image figure{
	display: block;
	border-radius: 30px;
}

.service-entry-image img{
	width: 100%;
	border-radius: 30px;
	aspect-ratio: 1 / 0.66;
	border-radius: 30px;
}

.service-entry-content-box .icon-box{
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.service-entry-content-box .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

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

.service-entry-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-entry-step-list{
	margin-top: 40px;
}

.service-entry-step-item{
	position: relative;
	display: flex;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 30px;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

.service-entry-step-item::before{
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-entry-step-item.active::before,
.service-entry-step-item:hover::before{
    height: 100%;
    top: 0;
    bottom: auto;
}

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

.service-entry-step-box{
	position: relative;
	width: calc(100% - 70px);
	display: flex;
	z-index: 1;
}

.service-entry-step-no{
	margin-right: 30px;
}

.service-entry-step-no h2{
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-content h3{
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-entry-step-item.active .service-entry-step-content p,
.service-entry-step-item:hover .service-entry-step-content p,
.service-entry-step-item.active .service-entry-step-no h2,
.service-entry-step-item:hover .service-entry-step-no h2,
.service-entry-step-item.active .service-entry-step-content h3,
.service-entry-step-item:hover .service-entry-step-content h3{
	color: var(--white-color);
}

.service-entry-step-item .icon-box{
	position: relative;
	display: inline-block;
	margin-left: 15px;
	padding-bottom: 5px;
}

.service-entry-step-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-entry-step-item.active .icon-box:before,
.service-entry-step-item:hover .icon-box:before{
	background: var(--white-color);
	opacity: 50%;
}

.service-entry-step-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

/************************************/
/***     22. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 100px 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{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

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

/************************************/
/***      23. Blog Single css     ***/
/************************************/

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

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

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

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

.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(--accent-color);
}

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

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

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

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

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

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

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

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

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

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

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

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

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

.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    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: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 35px 25px;
    background-size: 55px;
	border-radius: 30px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

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

.tag-links{
    font-family: var(--accent-font);
    font-size: 22px;
	font-weight: 700;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

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

.post-tags .tag-links a:hover{
	background: var(--primary-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(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

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

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

/************************************/
/***     24. Projects Page css    ***/
/************************************/

.page-programs{
	padding: 100px 0 70px;
}

/************************************/
/***    25. Project Single css    ***/
/************************************/

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

.program-feature-image{
	margin-bottom: 40px;
}

.program-feature-image figure{
	display: block;
	border-radius: 30px;
}

.program-feature-image img{
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
	border-radius: 30px;
}

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

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

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

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

.program-entry ul{
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
    list-style: none;
	padding: 0;
    margin: 40px 0 0 0;
}

.program-entry ul li{
	width: calc(50% - 15px);
	background: url(../images/icon-check-dark.svg) no-repeat;
	background-position: center left;
    background-size: 26px auto;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
	padding-left: 30px;
}

.building-stability-box,
.program-why-choose{
	margin-top: 60px;
}

.program-entry-video{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	text-align: left;
	margin: 40px 0;
}

.program-entry-video-item{
	position: relative;
	width: calc(50% - 15px);
}

.program-entry-video-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.program-entry-video-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 30%;
	z-index: 1;
}

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

.program-entry-video-item .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.program-entry-video.intro-video-box .video-play-button a:before,
.program-entry-video.intro-video-box .video-play-button a:after{
    top: -35%;
    left: -35%;
}

.program-entry-video-item .video-play-button a{
	height: 60px;
	width: 60px;
}

.program-entry-video-item .video-play-button a i{
    font-size: 26px;
}

.program-why-choose-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.program-why-choose-item{
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.program-why-choose-item .icon-box{
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.program-why-choose-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 33px;
	height: 33px;
	z-index: 0;
}

.program-why-choose-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}

.program-why-choose-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

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

.section-footer-text.program-why-choose-footer{
	margin-top: 40px;
}

/************************************/
/***      26. Team Page css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***      27. Team Single css     ***/
/************************************/

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

.page-team-single-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 100px 60px;
}

.team-member-info-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.team-member-image,
.team-member-content{
	width: calc(50% - 30px);
}

.team-member-image figure{
	display: block;
	border-radius: 20px;
}

.team-member-image img{
	width: 100%;
    aspect-ratio: 1 / 1.06;
	object-fit: cover;
	object-position: top;
	border-radius: 20px;
}

.team-member-info{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
}

.team-member-info .section-title{
	margin-bottom: 0;
}

.team-member-info .section-title p{
	text-transform: capitalize;
	margin-top: 10px;
}

.member-social-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

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

.member-social-list ul li:last-child{
	margin-right: 0;
}

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

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

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

.member-content-body{
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 40px;
	padding: 30px;
}

.member-content-body ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.member-content-body ul li{
	font-family: var(--accent-font);
	font-size: 20px;
    font-weight: 600;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
    display: flex;
	justify-content: space-between;
    margin-bottom: 15px;
}

.member-content-body ul li:last-child{
    margin-bottom: 0;
}

.member-content-body ul li span{
	font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    color: var(--text-color);
	display: inline-block;
    width: 80%;
}

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

.member-about-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 10px 0;
    padding: 0;
    margin: 0;
	border-bottom: 2px solid var(--divider-color);
}

.member-about-nav ul li{
    display: inline-block;
	width: 33.33%;
}

.member-about-nav ul li .nav-link{
	position: relative;
	width: 100%;
    background: transparent;
	border: none;
    color: var(--text-color);
	font-family: var(--accent-font);
	font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
	padding: 0 5px 20px 5px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.member-about-nav ul li .nav-link.active,
.member-about-nav ul li .nav-link:hover{
    background: transparent;
    color: var(--accent-color);
}

.member-about-nav ul li .nav-link::before{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    background: var(--accent-color);
    width: 0;
    height: 3px;
    transition: all 0.4s ease-in-out;
}

.member-about-nav ul li .nav-link.active:before,
.member-about-nav ul li .nav-link:hover:before{
	width: 100%;
    left: 0;
    right: auto;
}

.member-about-content .section-title{
	margin-bottom: 0;
}

.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{
	font-size: 16px;
	text-transform: capitalize;
}

.skill-data .skill-no{
	color: var(--primary-color);
	font-size: 16px;
	margin-left: 25px;
}

.skill-progress{
	position: relative;
	background: var(--secondary-color);
	border-radius: 99px;
	width: 100%;
	height: 16px;
}

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

.team-member-experience{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.team-experience-box,
.team-contact-form{
	width: calc(50% - 15px);
}

.team-experience-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-experience-body ul li{
	background: url('../images/icon-check-dark.svg') no-repeat;
    background-position: left center;
    background-size: 26px auto;
	width: calc(50% - 15px);
	color: var(--primary-color);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-left: 30px;
}

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

/************************************/
/***   28. Testimonial Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

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

/************************************/
/***    29. Image Gallery css     ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.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: 20px;
}

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

/************************************/
/***     30. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

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

.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: 20px;
    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(--accent-color);
	color: var(--white-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.81;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***       31. FAQs Page css      ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs-accordion{
	margin-bottom: 60px;
}

.page-faqs-accordion:last-child{
	margin-bottom: 0;
}

/************************************/
/***    32. Contact Us Page css   ***/
/************************************/

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

.contact-info-box{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 80px;
	box-shadow: 0px -10px 40px 5px #00000005;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 100px;
}

.contact-info-item{
	width: calc(33.33% - 66.66px);
	position: relative;
	display: flex;
	align-items: start;
}

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

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

.contact-info-item .icon-box{
	position: relative;
	margin-right: 20px;
	padding-bottom: 5px;
}

.contact-info-item .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 0;
}

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

.contact-info-content{
	width: calc(100% - 70px);
}

.contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

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

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

.contact-info-content p a:hover{
	color: var(--primary-color);
}

.contact-form-section .container-fluid{
	padding: 0;
}

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

.contact-form-box{
	background: var(--secondary-color);
	padding: 6.25vw;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

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

/************************************/
/***     33. Donation Page css    ***/
/************************************/

.page-donation{
	padding: 100px 0;
}

.donation-box{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px -10px 40px 5px #00000008;
	border-radius: 30px;
	padding: 120px;
}

.campaign-donate-form .form-control{
	color:  var(--text-color);
	font-weight: 400;
}

.campaign-donate-form .form-control::placeholder{
	color: var(--text-color);
	font-weight: 400;
}

.campaign-donate-value .donate-value-box{
	gap: 15px;
}

.campaign-donate-form .donate-value{
	width: calc(16.66% - 12.5px);
}

.donate-payment-method{
	margin-bottom: 40px;
}

.donate-payment-method .section-title,
.donar-personal-info .section-title{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.donate-payment-type{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.donate-payment-type .payment-method{
	display: flex;
	align-items: center;
}

.donate-payment-type .payment-method input{
	height: 24px;
	width: 24px;
}

.payment-method label{
	text-transform: capitalize;
	padding-left: 10px;
}

/************************************/
/***    34. 404 Error Page css    ***/
/************************************/

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

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

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

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

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

/************************************/
/***      35. Responsive css      ***/
/************************************/

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

	.btn-default{
		padding: 16px 50px 16px 20px;
	}
	
	.btn-default::before{
		transform: translate(-20px, -50%);
	}
	
	.btn-default:hover::before{
		transform: translate(-17px, -50%);
	}

	.readmore-btn{
		padding-right: 35px;
	}
	
	.readmore-btn::before{
		width: 26px;
		height: 26px;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

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

	.contact-now-box{
		display: none;
	}

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

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

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

	.section-title h2{
		font-size: 38px;
	}

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

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

	.hero-content{
		margin-right: 0px;
	}

	.hero{
		padding: 150px 0 60px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 150px 0 80px;
	}
	
	.hero.hero-slider-layout .hero-pagination{
		bottom: 30px;
		padding-left: 15px;
	}

	.hero-content .section-title,
	.hero-body{
		margin-bottom: 40px;
	}

	.hero-list ul li{
		background-size: 22px auto;
		margin-bottom: 15px;
		padding-left: 30px;
	}

	.hero-help-families{
		max-width: 100%;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 76%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-img-2{
		border-width: 10px;
	}

	.need-fund-box{
		max-width: 135px;
		padding: 15px;
		bottom: 10px;
	}

	.need-fund-box img{
		max-width: 50px;
	}

	.need-fund-box p{
		font-size: 14px;
	}

	.about-support-box .icon-box img{
		max-width: 45px;
	}

	.helped-fund-img{
		margin-bottom: 15px;
	}

	.helped-fund-img figure{
		max-width: 100px;
	}

	.helped-fund-content h2{
		font-size: 24px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-item{
		border-radius: 20px;
		padding: 30px;
	}

	.service-content,
	.service-image{
		margin-bottom: 20px;
	}
	
	.service-content h3{
		margin-bottom: 10px;
	}

	.service-image figure{
		max-width: 160px;
	}

	.section-footer-text{
		margin-top: 20px;
	}

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

	.what-we-do-content{
		margin-bottom: 30px;
	}

	.what-we-item{
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.what-we-item .icon-box{
		margin-right: 20px;
	}

	.what-we-item .icon-box:before{
		width: 32px;
		height: 32px;
	}

	.what-we-item .icon-box img{
		max-width: 60px;
	}

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

	.what-we-do-images{
		padding-left: 110px;
	}

	.what-we-do .what-we-do-images{
		padding-left: 0 !important;
	}

	.what-we-do-img-1 img{
        aspect-ratio: 1 / 1.05;
    }

	.what-we-do-img-2{
		max-width: 220px;
	}
	
	.donate-now-box{
		left: 30px;
	}
	
	.our-causes{
		padding: 50px 0 20px;
	}

	.causes-item{
		border-radius: 20px;
	}

	.causes-image,
	.causes-content{
		margin-bottom: 20px;
	}

	.causes-image figure{
		border-radius: 20px;
	}

	.causes-image img{
		aspect-ratio: 1 / 0.75;
		border-radius: 20px;
	}

	.causes-button .btn-default{
		padding: 16px;
	}

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

	.why-choose-images{
		width: 100%;
		max-width: 75%;
		margin: 0 auto 30px;
	}

	.why-choose-image-2{
		max-width: 220px;
	}

	.why-choose-content{
		margin-left: 0px;
	}

	.why-choose-list ul{
		gap: 20px;
	}

	.why-choose-list ul li{
		width: calc(50% - 10px);
		background-size: 22px auto;
		padding-left: 30px;
	}

	.why-choose-counters{
		gap: 30px 40px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.why-choose-counter-item{
		width: calc(33.33% - 26.67px);
	}

	.why-choose-counter-item::before{
		right: -20px;
	}

	.why-choose-counter-item h2{
		font-size: 38px;
	}

	.our-program{
		padding: 50px 0;
	}

	.program-item{
		border-radius: 20px;
		padding: 30px;
	}

	.program-image,
	.program-content{
		margin-bottom: 20px;
	}

	.our-program .section-footer-text{
		margin-top: 20px;
	}

	.scrolling-ticker-box{
		--gap: 30px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		margin-right: 30px;
	}
	
	.scrolling-ticker-box .scrolling-content span{
		font-size: 70px;
	}

	.our-features{
		padding: 50px 0;
	}

	.our-features-item{
		width: 100%;
		align-items: center;
		gap: 20px 30px;
	}

	.our-features-item:nth-child(even){
		flex-direction: row-reverse;
	}

	.our-features-image,
	.our-features-content{
		width: calc(50% - 15px);
	}

	.our-features-image figure{
		border-radius: 20px;
	}

	.our-features-image img{
		aspect-ratio: 1 / 0.72;
		border-radius: 20px;
	}

	.our-features-body{
		width: calc(100% - 75px);
	}

	.our-features-body h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.our-features-content .icon-box:before{
		width: 33px;
		height: 33px;
	}

	.our-features-content .icon-box img{
		max-width: 60px;
	}

	.donate-now{
		padding: 80px 0;
	}

	.intro-video-box{
		margin: 0 0 50px 0;
	}

	.donar-company-slider{
		margin-top: 80px;
	}

	.donar-company-logo img{
		max-width: 180px;
	}

	.donate-box{
		border-radius: 20px;
		padding: 30px;
	}

	.donate-value-box .form-control{
		padding: 14px 25px;
	}

	.donate-value-box .donate-value label{
		padding: 16px;
	}

	.donate-box .donate-form .form-group-btn .btn-default{
		padding: 16px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-it-work-item{
		width: 100%;
	}

	.how-it-work-image,
	.how-it-work-content{
		width: calc(50% - 15px);
	}

	.how-it-work-item:nth-child(even){
		flex-direction: row-reverse;
	}

	.how-it-work-image figure{
		border-radius: 20px;
	}

	.how-it-work-image img{
		aspect-ratio: 1 / 0.625;
		border-radius: 20px;
	}

	.how-it-work-content{
		border-radius: 20px;
	}

	.how-it-work-content .icon-box{
		margin-bottom: 20px;
	}

	.how-it-work-content .icon-box img{
		max-width: 50px;
	}

	.how-it-work-content .icon-box:before{
        width: 30px;
        height: 30px;
    }

	.section-footer-text.how-work-footer-text{
		margin-top: 40px;
	}

	.our-testimonials{
		background-position: bottom center;
		padding: 50px 0;
	}

	.testimonials-image{
		max-width: 80%;
		margin: 0 auto;
		padding-right: 70px;
		margin-bottom: 30px;
	}

	.testimonials-img figure,
	.testimonials-img img{
		border-radius: 20px;
	}

	.testimonials-img img{
		aspect-ratio: 1 / 1.1;
	}

	.helthcare-support-circle img{
		max-width: 140px;
	}

	.client-review-box{
		padding: 15px;
	}

	.client-review-box h2{
		font-size: 38px;
	}

	.client-review-box p{
		font-size: 14px;
	}

	.testimonials-content{
		margin-left: 0px;
	}

	.testimonial-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonial-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.author-image{
		margin-right: 10px;
	}

	.author-content{
		width: calc(100% - 70px);
	}

	.testimonial-slider .testimonial-pagination{
		margin-top: 30px;
	}

	.our-gallery{
		padding: 50px 0 25px;
	}

	.our-gallery-nav{
		margin-bottom: 40px;
	}

	.our-gallery-nav ul{
		gap: 10px 50px;
	}

	.our-gallery-nav ul li a:before{
		right: -29px;
	}

	.gallery-item-box img{
		width: 100%;
		aspect-ratio: 1 / 0.88;
		object-fit: cover;
	}

	.our-blog{
		padding: 25px 0 20px;
	}

	.post-item{
		padding: 30px;
		border-radius: 20px;
	}

	.post-item-header,
	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-item-meta{
		margin-bottom: 10px;
	}

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

	.footer-about,
	.footer-links-box{
		width: 100%;
	}

	.footer-about::before{
		display: none;
	}

	.footer-logo{
		margin-bottom: 30px;
	}

	.footer-accreditation{
		margin-bottom: 25px;
		padding: 15px 0;
	}

	.accreditation-logo img{
		max-width: 100px;
	}

	.footer-contact-item p,
	.footer-social-links h3{
		margin-bottom: 10px;
	}

	.footer-social-links{
		margin-top: 30px;
	}

	.footer-links-box{
		gap: 30px;
	}

	.newsletter-form .form-group .form-control{
		width: calc(100% - 46px);
		padding: 10px 20px;
	}

	.newsletter-form .form-group .newsletter-btn{
		width: 46px;
		height: 46px;
	}

	.newsletter-form .form-group .newsletter-btn i{
		font-size: 20px;
	}

	.footer-links{
		width: calc(30% - 20px);
	}

	.footer-links.footer-service-links{
		width: calc(40% - 20px);
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright{
		padding: 15px 0;
		margin-top: 40px;
	}

	.page-header{
		padding: 170px 0 80px;
	}

	.page-header-box h1{
		font-size: 46px;
	}

	.our-approach{
		padding: 50px 0;
	}

	.our-approach-box-content{
		padding-bottom: 0;
	}

	.our-approach-content{
		padding-bottom: 0;
	}

	.our-approach-content,
	.our-approach-image{
		width: 100%;
	}

	.mission-vision-box{
		position: initial;
		gap: 30px;
		border-radius: 20px;
		padding: 30px;
		margin-top: 30px;
	}

	.mission-vision-item{
		width: calc(33.33% - 20px);
	}

	.mission-vision-item:before{
		right: -15px;
	}

	.mission-vision-item .icon-box img{
		max-width: 45px;
	}

	.our-approach-image figure{
		border-radius: 20px;
	}

	.our-approach-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.how-we-help{
		padding: 50px 0;
	}

	.how-we-help:before{
		border-radius: 0 0px 20px 20px;
		height: 60%;
		width: 100%;
	}

	.how-help-item{
		border-radius: 20px;
	}

	.how-we-help-content{
		margin-bottom: 30px;
	}

	.how-we-help-body{
		margin-bottom: 30px;
	}

	.how-we-help-body ul li{
		background-size: 22px auto;
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.how-help-item .icon-box{
		margin-bottom: 20px;
	}

	.how-help-item .icon-box:before{
		width: 30px;
		height: 30px;
	}

	.how-help-item .icon-box img{
		max-width: 50px;
	}

	.our-fact{
		padding: 50px 0;
	}

	.our-fact-image{
		margin-bottom: 30px;
	}

	.our-fact-image figure{
		border-radius: 20px;
	}

	.our-fact-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 20px;
	}

	.fact-counter-item{
		padding: 25px 20px;
	}

	.fact-counter-item h2{
		font-size: 46px;
		width: calc(40% - 5px);
	}

	.fact-counter-item p{
		width: calc(60% - 5px);
	}

	.fact-body-image figure{
		border-radius: 20px;
	}

	.fact-body-image img{
		aspect-ratio: 1 / 0.6;
		border-radius: 20px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-item{
		border-radius: 20px;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.team-content{
		margin-bottom: 10px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-content{
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 14px 35px 14px 14px;
	}
	
	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 16px;
		right: 14px;
	}
	
	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 35px 14px 14px;
	}

	.faqs-image{
		max-width: 75%;
		margin: 0 auto;
		padding-right: 100px;
	}

	.faqs-image:before{
		right: 40px;
	}

	.faqs-img-1,
	.faqs-img-2{
		border-radius: 20px;
	}

	.faqs-img-2{
		max-width: 252px;
		top: 100px;
	}

	.faqs-img-1 img{
		aspect-ratio: 1 / 1.414;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.our-features.services-our-features{
		padding: 50px 0;
	}

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

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-sidebar-catagery-list{
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-sidebar-catagery-list h3{
		padding: 15px 20px;
	}

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

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

	.sidebar-cta-box .icon-box,
	.sidebar-cta-content{
		margin-bottom: 30px;
	}

	.sidebar-cta-box .icon-box img{
		max-width: 70px;
	}

	.service-feature-image,
	.service-entry{
		margin-bottom: 30px;
	}

	.service-feature-image figure{
		border-radius: 20px;
	}

	.service-feature-image img{
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.bringing-quality-box,
	.service-entry-content-list,
	.service-entry-steps{
		margin-top: 30px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}
	
	.service-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul{
		gap: 20px;
		border-radius: 20px;
		padding: 30px;
		margin: 30px 0;
	}

	.service-entry ul li{
		width: calc(33.33% - 13.33px);
		background-size: 22px auto;
	}

	.service-entry-image figure,
	.service-entry-image img{
		border-radius: 20px;
	}

	.service-entry-content-box .icon-box img{
		max-width: 40px;
	}

	.service-entry-content-box .icon-box:before{
		width: 24px;
		height: 24px;
	}

	.service-entry-step-list{
		margin-top: 30px;
	}

	.service-entry-step-item{
		border-radius: 20px;
		padding: 20px;
	}

	.service-entry-step-box{
		width: calc(100% - 60px);
	}

	.service-entry-step-no{
		margin-right: 20px;
	}

	.service-entry-step-no h2{
		margin-bottom: 0;
	}

	.service-entry-step-item .icon-box img{
		max-width: 45px;
	}

	.service-entry-step-item .icon-box:before{
		width: 24px;
		height: 24px;
	}

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

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.417em;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }

	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}
    
    .post-entry blockquote{
        background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 85px;
		border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }

    .tag-links{
        font-size: 20px;
    }

    .post-tags .tag-links a{
		padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-programs{
		padding: 50px 0 20px;
	}

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

	.program-feature-image,
	.program-entry{
		margin-bottom: 30px;
	}

	.program-feature-image figure{
		border-radius: 20px;
	}

	.program-feature-image img{
		aspect-ratio: 1 / 0.5;
		border-radius: 20px;
	}

	.building-stability-box,
	.program-why-choose{
		margin-top: 30px;
	}

	.program-entry p{
		margin-bottom: 15px;
	}
	
	.program-entry h2{
		font-size: 38px;
		margin-bottom: 15px;
	}

	.program-entry ul{
		gap: 15px 20px;
		border-radius: 20px;
		margin-top: 30px;
	}

	.program-entry ul li{
		width: calc(50% - 10px);
		background-size: 22px auto;
	}

	.program-entry-video{
		margin: 30px 0;
	}

	.program-entry-video-image figure,
	.program-entry-video-image img{
		border-radius: 20px;
	}

	.program-entry-video-image img{
		aspect-ratio: 1 / 0.74;
	}

	.program-why-choose-item .icon-box{
		margin-bottom: 20px;
	}

	.program-why-choose-item .icon-box:before{
		width: 28px;
		height: 28px;
	}

	.program-why-choose-item .icon-box img{
		max-width: 45px;
	}

	.section-footer-text.program-why-choose-footer{
		margin-top: 30px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

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

	.page-team-single-box{
		gap: 50px 30px;
	}

	.team-member-image,
	.team-member-content{
		width: 100%;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.8;
	}

	.member-content-body{
		padding: 20px;
		margin-bottom: 30px;
	}

	.member-content-body ul li{
		margin-bottom: 10px;
	}

	.member-about-nav ul li .nav-link{
		padding: 0 5px 15px 5px;
	}

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

	.skillbar .skill-data{
		margin-bottom: 10px;
	}

	.team-experience-box,
	.team-contact-form{
		width: 100%;
	}

	.team-experience-body ul{
		gap: 15px 20px;
	}

	.team-experience-body ul li{
		width: calc(50% - 10px);
		background-size: 22px auto;
	}

	.team-contact-form{
		padding: 30px;
		border-radius: 20px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs-accordion{
		margin-bottom: 40px;
	}

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

	.contact-info-box{
		padding: 40px;
	}

	.contact-info-item{
		width: calc(50% - 50px);
	}

	.contact-info-item:nth-child(2n + 2)::before{
		display: none;
	}

	.contact-info-item .icon-box{
		margin-right: 15px;
	}

	.contact-info-item .icon-box img{
		max-width: 45px;
	}

	.contact-info-content{
		width: calc(100% - 60px);
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.contact-form-box{
		padding: 50px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.page-donation{
		padding: 50px 0;
	}

	.donation-box{
		padding: 60px 30px;
		border-radius: 20px;
	}

	.campaign-donate-form .form-control{
		padding: 12px 20px;
	}

	.campaign-donate-form .donate-value label{
		padding: 12px;
	}

	.donate-payment-method{
		margin-bottom: 30px;
	}

	.donate-payment-method .section-title,
	.donar-personal-info .section-title{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.donate-payment-type .payment-method input{
		height: 20px;
		width: 20px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

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

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

	.section-title h3{
		font-size: 14px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.section-title h3::before{
		display: none;
	}

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

	.section-title h2{
		font-size: 26px;
	}	

	.video-play-button a{
		height: 45px;
		width: 45px;
	}

	.video-play-button a i{
		font-size: 20px;
	}

	.hero::before{
		background: linear-gradient(270deg, rgba(2, 13, 25, 0.3) 16.33%, rgba(2, 13, 25, 0.8) 100%), linear-gradient(360deg, rgba(2, 13, 25, 0) 87.52%, #020D19 101.14%);
	}

	.hero-body{
		gap: 20px;
		justify-content: space-between;
	}

	.hero-list,
	.hero-help-families{
		width: 100%;
	}

	.hero-list:before{
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.hero-help-families h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.about-us-images{
		max-width: 100%;
		padding: 0 0 125px 70px;
	}

	.about-img-2{
		border-width: 5px;
		max-width: 210px;
	}

	.need-fund-box{
        max-width: 125px;
        padding: 10px;
        bottom: 5px;
    }

	.need-fund-box img{
        max-width: 35px;
		margin-bottom: 0;
    }

	.about-us-body-content,
	.helped-fund-item{
		width: 100%;
	}

	.about-support-box{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.helped-fund-item{
		padding: 0 20px 20px;
		max-width: 68%;
	}

	.helped-fund-img figure{
        max-width: 80px;
    }

	.helped-fund-content h2{
        font-size: 22px;
    }

	.helped-fund-content h3{
		font-size: 18px;
	}

	.service-item{
        padding: 25px 20px;
    }

	.service-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-image figure{
		max-width: 120px;
	}

	.section-footer-text{
        margin-top: 10px;
    }

	.section-footer-text p span{
		padding: 3px 8px;
	}

	.what-we-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.what-we-item .icon-box{
        margin-right: 10px;
    }

	.what-we-item .icon-box img{
        max-width: 50px;
    }

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

	.what-we-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
		color: #2C895C;
	}

	.what-we-do-images{
        padding-left: 70px;
    }

	.what-we-do .what-we-do-images{
		padding-left: 0 !important;
	}

    .what-we-do-img-1 figure{
		border-radius: 20px;
	}

    .what-we-do-img-1 img{
        aspect-ratio: 1 / 1.5;
		border-radius: 20px;
    }
	
	.what-we-do-img-2{
		max-width: 140px;
		bottom: 30px;
    }

	.donate-now-box{
		left: 15px;
        top: 15px;
    }
	
	.donate-now-box a{
		font-size: 16px;
		gap: 10px;
		padding: 20px 10px;
	}

	.donate-now-box a img{
		max-width: 20px;
	}

	.causes-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}	

	.why-choose-images{
		max-width: 100%;
		padding: 0 40px 30px 0;
	}

	.why-choose-image-2{
        max-width: 160px;
    }

	.why-choose-list ul{
        gap: 15px;
    }

	.why-choose-list ul li{
		width: 100%;
	}

	.why-choose-counters{
        gap: 20px;
        margin-top: 20px;
        padding-top: 20px;
    }

	.why-choose-counter-item{
        width: calc(33.33% - 13.33px);
    }

	.why-choose-counter-item::before{
        right: -10px;
    }

	.why-choose-counter-item h2{
        font-size: 26px;
    }

	.why-choose-counter-item p{
		font-size: 14px;
	}

	.program-item{
        padding: 20px;
    }

	.program-content h3{
		font-size: 18px;
	}

	.scrolling-ticker-box{
		--gap: 20px;
	}

	.scrolling-ticker-box .scrolling-content span img{
		width: 35px;
		margin-right: 20px;
	}
	
	.scrolling-ticker-box .scrolling-content span{
		font-size: 40px;
	}

	.our-features-item:nth-child(even){
		flex-direction: column;
	}

	.our-features-image,
	.our-features-content{
        width: 100%;
    }

	.our-features-image img{
        aspect-ratio: 1 / 0.67;
    }

	.our-features-body{
		width: calc(100% - 60px);
	}

	.our-features-body h2{
		font-size: 26px;
		margin-bottom: 10px;
	}

	.our-features-body h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-features-content .icon-box img{
		max-width: 45px;
	}

	.our-features-content .icon-box:before{
		width: 25px;
		height: 25px;
	}

	.donate-now{
        padding: 50px 0;
    }

	.intro-video-box{
        margin: 0 0 40px 0;
    }

	.intro-video-box .video-play-button a{
		width: 60px;
		height: 60px;
	}

	.intro-video-box .video-play-button a:before,
	.intro-video-box .video-play-button a::after{
		top: -33%;
		left: -33%;
	}

	.intro-video-box .video-play-button a i{
		font-size: 25px;
	}

	.donar-company-slider{
        margin-top: 40px;
    }

	.donar-company-logo img{
        max-width: 140px;
    }

	.donate-box{
        padding: 20px;
    }

	.donate-form .form-control{
        padding: 10px 25px;
    }

	.donate-form .donate-value label{
		font-size: 14px;
        padding: 10px;
    }
	
	.how-it-work-item{
		gap: 20px;
	}

	.how-it-work-image,
	.how-it-work-content{
        width: 100%;
    }

	.how-it-work-content .icon-box img{
        max-width: 45px;
    }

	.how-it-work-body h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.testimonials-image{
		max-width: 100%;
		padding-right: 50px;
	}

	.helthcare-support-circle{
		top: 30px;
	}

	.helthcare-support-circle img{
        max-width: 100px;
    }

	.client-review-box{
        padding: 12px;
		bottom: 20px;
    }

	.client-review-box h2{
        font-size: 26px;
    }

	.testimonial-item{
		padding: 20px;
	}

	.author-info,
	.testimonial-rating{
		width: 100%;
	}

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-rating{
		text-align: left;
	}

	.testimonial-content p{
		font-size: 14px;
	}

	.our-gallery-nav{
        margin-bottom: 30px;
    }

	.our-gallery-nav ul{
        gap: 10px 40px;
    }

	.our-gallery-nav ul li a:before{
        right: -24px;
    }

	.gallery-item-boxes{
		left: 0;
	}

	.gallery-item-box{
		width: calc(50% - 0.2px);
	}

	.post-item{
		padding: 20px;
	}

	.post-item-header,
	.post-featured-image{
        margin-bottom: 15px;
    }

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-logo{
        margin-bottom: 20px;
    }

	.footer-accreditation{
		margin-bottom: 20px;
		padding: 15px 0;
	}

	.accreditation-logo img{
		max-width: 90px;
	}

	.footer-contact-item{
		width: 100%;
	}
	
	.footer-social-links h3,
	.footer-contact-item h3{
		font-size: 18px;
	}

	.footer-links,
	.footer-links.footer-service-links{
        width: 100%;
    }

	.footer-links h3{
        font-size: 18px;
		margin-bottom: 15px;
    }

	.footer-copyright{
        padding: 10px 0;
        margin-top: 30px;
    }

	.page-header-box h1{
		font-size: 28px;
	}

	.mission-vision-box{
		padding: 20px;
	}

	.mission-vision-item{
		width: 100%;
	}

	.mission-vision-item:before{
		width: 100%;
		height: 1px;
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
	}

	.mission-vision-item:nth-child(3n + 3):before{
		display: block;
	}

	.mission-vision-item:last-child:before{
		display: none;
	}

	.mission-vision-item .icon-box{
		margin-bottom: 10px;
	}

	.mission-vision-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.how-we-help:before{
        height: 44%;
    }

	.how-help-item{
		width: 100%;
	}

	.how-help-item .icon-box{
        margin-bottom: 15px;
    }

	.how-help-item .icon-box img{
        max-width: 45px;
    }

	.how-help-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}
	
	.our-fact-image img{
		aspect-ratio: 1 / 0.947;
	}

	.fact-counter-list,
	.fact-body-image{
		width: 100%;
	}

	.fact-counter-item h2{
        font-size: 30px;
        width: calc(30% - 5px);
    }

	.fact-counter-item p{
        width: calc(70% - 5px);
    }

	.fact-body-image figure,
	.fact-body-image img{
		height: auto;
	}

	.fact-body-image img{
        aspect-ratio: 1 / 0.98;
    }

	.team-content h3{
		font-size: 18px;
	}

	.team-content p{
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 12px 30px 12px 12px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 12px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px;
	}
	
	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faqs-image{
        max-width: 100%;
		padding-right: 75px;
    }

	.faqs-image:before{
		right: 30px;
		bottom: 15px;
		width: 20px;
		height: 100px;
	}

	.faqs-img-2{
		max-width: 170px;
		top: 60px;
		border-width: 4px;
	}

	.page-sidebar-catagery-list h3{
		font-size: 18px;
	}

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

	.page-sidebar-catagery-list ul li a{
		padding-right: 25px;
	}

	.page-sidebar-catagery-list ul li a::before{
		width: 16px;
		height: 16px;
	}

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

	.sidebar-cta-box .icon-box,
	.sidebar-cta-content{
        margin-bottom: 20px;
    }

	.sidebar-cta-box .icon-box img{
        max-width: 60px;
    }

	.sidebar-cta-content p{
		margin-bottom: 10px;
	}

	.sidebar-cta-content h3{
		font-size: 18px;
	}

	.service-feature-image{
        margin-bottom: 20px;
    }

	.service-feature-image img{
        aspect-ratio: 1 / 0.65;
    }

	.service-entry h2{
        font-size: 26px;
    }

	.service-entry ul{
        gap: 15px;
        padding: 20px;
        margin: 20px 0;
    }

	.service-entry ul li{
        width: 100%;
    }

	.service-entry-content-item{
		gap: 20px;
	}

	.service-entry-image,
	.service-entry-content-box{
		width: 100%;
	}

	.service-entry-content h3{
		font-size: 18px;
	}

	.service-entry-step-list{
        margin-top: 20px;
    }

	.service-entry-step-item{
		border-radius: 12px;
		padding: 15px;
	}

	.service-entry-step-no{
        margin-right: 10px;
    }

	.service-entry-step-box{
        width: calc(100% - 48px);
    }

	.service-entry-step-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-entry-step-content p{
		font-size: 14px;
	}

	.service-entry-step-item .icon-box{
		margin-left: 10px;
	}

	.service-entry-step-item .icon-box img{
        max-width: 38px;
    }

	.service-entry-step-item .icon-box:before{
        width: 20px;
        height: 20px;
    }

	.post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 12px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry h2{
        font-size: 26px;
    }

	.program-feature-image{
        margin-bottom: 20px;
    }

	.program-feature-image img{
        aspect-ratio: 1 / 0.65;
    }

	.program-entry h2{
        font-size: 26px;
    }

	.program-entry ul{
		margin-top: 20px;
    }

	.program-entry ul li{
        width: 100%;
    }

	.program-entry-video{
        margin: 20px 0;
    }

	.program-entry-video-item{
		width: 100%;
	}

	.program-entry-video-image img{
        aspect-ratio: 1 / 0.67;
    }

	.program-why-choose-list{
		gap: 20px;
	}

	.program-why-choose-item{
		width: 100%;
	}

	.program-why-choose-item .icon-box{
        margin-bottom: 15px;
    }

	.program-why-choose-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 1.06;
	}

	.team-member-title,
	.member-social-list{
		width: 100%;
	}

	.member-social-list ul{
		text-align: left;
	}

	.member-content-body ul li{
		font-size: 18px;
	}

	.member-content-body ul li span{
		width: 65%;
	}

	.member-about-nav ul li .nav-link{
        padding: 0 16px 16px 16px;
    }

	.team-experience-body ul li{
		width: 100%;
	}

	.contact-info-box{
        padding: 20px;
    }

	.contact-info-item{
		width: 100%;
	}

	.contact-info-item::before{
		top: auto;
		right: 0;
		bottom: -15px;
		left: 0;
		height: 1px;
		width: 100%;
	}

	.contact-info-item:nth-child(2n + 2)::before{
		display: block;
	}

	.contact-info-item .icon-box:before{
		width: 25px;
		height: 25px;
	}

	.contact-info-item .icon-box img{
        max-width: 40px;
    }

	.contact-info-content{
        width: calc(100% - 55px);
    }

	.contact-info-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}

	.contact-form-box{
        padding: 30px 20px;
    }

	.donation-box{
		padding: 30px 20px;
	}

	.campaign-donate-form .form-control{
		padding: 12px 15px;
	}
	
	.campaign-donate-form .donate-value{
		width: calc(33.33% - 10px);
	}

	.donate-payment-method .section-title,
	.donar-personal-info .section-title{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	
	.donate-payment-type .payment-method input{
		height: 16px;
		width: 16px;
	}
}

/************************************/
/***   Our Story Page Redesign css  ***/
/************************************/

/* Our Story Intro Section */
.section-our-story-intro{
	padding: 100px 0;
	background: var(--white-color);
}

.section-our-story-intro .hero-stat-box{
	padding: 40px 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Vision & Mission Section */
.section-vision-mission{
	padding: 100px 0;
}

.vision-mission-card{
	padding: 40px;
	background: var(--white-color);
	border-radius: 10px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.05);
	transition: all 0.3s ease-in-out;
	height: 100%;
}

.vision-mission-card:hover{
	box-shadow: 0 5px 30px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

/* Vision & Mission Icons */
.vision-mission-icon{
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(20, 50, 150, 0.1);
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex: 0 0 auto;
	transition: all 0.3s ease-in-out;
}

.vision-mission-card:hover .vision-mission-icon{
	background: rgba(20, 50, 150, 0.15);
	transform: scale(1.05);
}

/* Values Section */
.section-values{
	padding: 100px 0;
	background: var(--white-color);
}

/* Values Carousel */
.values-carousel{
	position: relative;
	padding: 60px 0 80px;
}

.values-swiper{
	overflow: visible;
}

.value-carousel-item{
	padding: 60px 50px;
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	min-height: 320px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.value-carousel-item:hover{
	border-color: var(--primary-color);
	box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.value-carousel-left{
	text-align: center;
	padding-right: 20px;
}

.value-icon{
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 50, 150, 0.1);
	border-radius: 50%;
	padding: 20px;
}

.value-icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.value-carousel-title{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.3;
}

.value-carousel-right{
	padding-left: 20px;
}

.value-carousel-description{
	color: rgba(0,0,0,0.7);
	line-height: 1.9;
	font-size: 16px;
	margin: 0;
}

/* Carousel Navigation */
.values-carousel-navigation{
	position: relative;
	margin-top: 50px;
}

.values-carousel-prev,
.values-carousel-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: var(--white-color);
	border: 2px solid rgba(0,0,0,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	z-index: 10;
	color: var(--primary-color);
	font-size: 18px;
}

.values-carousel-prev{
	left: -60px;
}

.values-carousel-next{
	right: -60px;
}

.values-carousel-prev:hover,
.values-carousel-next:hover{
	background: var(--primary-color);
	color: var(--white-color);
	border-color: var(--primary-color);
	transform: translateY(-50%) scale(1.1);
}

.values-carousel-prev.swiper-button-disabled,
.values-carousel-next.swiper-button-disabled{
	opacity: 0.3;
	cursor: not-allowed;
}

/* Carousel Pagination */
.values-carousel-pagination{
	position: relative;
	margin-top: 30px;
	text-align: center;
}

.values-carousel-pagination .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	background: rgba(0,0,0,0.2);
	opacity: 1;
	margin: 0 5px;
	transition: all 0.3s ease-in-out;
}

.values-carousel-pagination .swiper-pagination-bullet-active{
	background: var(--primary-color);
	width: 30px;
	border-radius: 6px;
}

/************************************/
/***    Membership Page Styles     **/
/************************************/

.section-membership{
	padding: 100px 0;
}

.membership-highlight-box{
	background: #f8f9fc;
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 14px;
	padding: 30px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.stat-tile{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 12px;
	padding: 18px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.stat-tile h3{
	font-size: 26px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 6px;
}

.stat-tile p{
	margin: 0;
	color: rgba(0,0,0,0.65);
	font-weight: 600;
}

.section-membership-criteria{
	padding: 100px 0;
}

.criteria-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 12px;
	padding: 22px 20px;
	height: 100%;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.criteria-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
	border-color: rgba(20,50,150,0.25);
}

.criteria-card h4{
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.criteria-card p{
	margin: 0;
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
}

.criteria-icon{
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(20,50,150,0.08);
	color: var(--primary-color);
	border-radius: 10px;
	margin-bottom: 12px;
	font-size: 16px;
}

.section-membership-process{
	padding: 100px 0;
}

.process-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 12px;
	padding: 22px 20px;
	height: 100%;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.process-card:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
	border-color: rgba(20,50,150,0.25);
}

.process-step{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(20,50,150,0.08);
	color: var(--primary-color);
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 12px;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.process-card p{
	margin: 0;
	color: rgba(0,0,0,0.75);
	line-height: 1.7;
}

.membership-note{
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.08);
}

.section-members-directory{
	padding: 100px 0;
}

/* Membership Option Cards */
.section-membership-options{
	padding: 100px 0;
}

.membership-option-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 16px;
	padding: 50px 40px;
	height: 100%;
	text-align: center;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.membership-option-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	border-color: var(--primary-color);
}

.membership-option-card .option-icon{
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 50, 150, 0.1);
	border-radius: 50%;
}

.membership-option-card .option-icon i{
	font-size: 45px;
	color: var(--primary-color);
}

.membership-option-card h3{
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.membership-option-card p{
	color: rgba(0,0,0,0.7);
	line-height: 1.8;
	margin-bottom: 30px;
	font-size: 16px;
}

.members-search-box{
	position: relative;
	display: inline-block;
	width: 100%;
}

.members-search-box input{
	padding: 14px 20px 14px 50px;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	width: 100%;
	font-size: 16px;
}

.members-search-box i{
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0,0,0,0.5);
	z-index: 2;
	pointer-events: none;
	font-size: 16px;
}

.member-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 14px;
	padding: 24px;
	height: 100%;
	box-shadow: 0 12px 30px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
}

.member-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.1);
	border-color: rgba(20,50,150,0.25);
}

.member-logo{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	padding: 10px;
}

.member-logo img{
	width: auto;
	height: auto;
	object-fit: contain;
}

.member-meta .member-category{
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: rgba(0,0,0,0.5);
	margin-bottom: 6px;
}

.member-name{
	font-size: 20px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 8px;
	line-height: 1.3;
}

.member-description{
	color: rgba(0,0,0,0.72);
	margin: 0;
	line-height: 1.7;
}

@media (max-width: 991px){
	.section-membership,
	.section-membership-criteria,
	.section-membership-process,
	.section-members-directory,
	.section-membership-options{
		padding: 70px 0;
	}

	.membership-highlight-box{
		margin-top: 10px;
	}

	.membership-option-card{
		padding: 40px 30px;
		margin-bottom: 30px;
	}

	.value-carousel-item{
		padding: 45px 30px;
		min-height: 260px;
	}
}

@media (max-width: 767px){
	.section-membership,
	.section-membership-criteria,
	.section-membership-process,
	.section-members-directory,
	.section-membership-options{
		padding: 55px 0;
	}

	.membership-option-card{
		padding: 35px 25px;
	}

	.membership-option-card .option-icon{
		width: 80px;
		height: 80px;
		margin-bottom: 25px;
	}

	.membership-option-card .option-icon i{
		font-size: 35px;
	}

	.membership-option-card h3{
		font-size: 22px;
	}

	.value-carousel-item{
		padding: 35px 24px;
		min-height: auto;
	}

	.members-search-box input{
		padding-left: 44px;
	}
}

/* Board & Team Sections */
.section-board,
.section-team{
	padding: 100px 0;
}

.section-board{
	background: var(--white-color);
}

.section-team{
	background: var(--white-color);
}

/* Improved spacing for team items */
.section-board .team-item,
.section-team .team-item{
	margin-bottom: 0;
}

/* Better section spacing */
.section-our-story-intro,
.section-vision-mission,
.section-values,
.section-board,
.section-team,
.section-partners{
	margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px){
	.section-our-story-intro,
	.section-vision-mission,
	.section-values,
	.section-board,
	.section-team{
		padding: 60px 0;
	}

	.vision-mission-card{
		padding: 30px;
		margin-bottom: 30px;
	}

	.value-carousel-item{
		padding: 45px 30px;
		min-height: 260px;
	}

	.value-carousel-left{
		padding-right: 15px;
		margin-bottom: 20px;
	}

	.value-carousel-right{
		padding-left: 15px;
	}

	.value-icon{
		width: 70px;
		height: 70px;
		padding: 15px;
	}

	.value-carousel-title{
		font-size: 20px;
	}

	.values-carousel-prev{
		left: -10px;
	}

	.values-carousel-next{
		right: -10px;
	}
}

@media (max-width: 767px){
	.section-our-story-intro,
	.section-vision-mission,
	.section-values,
	.section-board,
	.section-team{
		padding: 50px 0;
	}

	.vision-mission-card{
		padding: 25px;
	}

	.value-carousel-item{
		padding: 35px 24px;
		min-height: auto;
	}

	.value-carousel-left{
		padding-right: 0;
		margin-bottom: 25px;
		text-align: center;
	}

	.value-carousel-right{
		padding-left: 0;
		text-align: center;
	}

	.value-icon{
		width: 60px;
		height: 60px;
		padding: 12px;
		margin-bottom: 20px;
	}

	.value-carousel-title{
		font-size: 18px;
	}

	.value-carousel-description{
		font-size: 15px;
	}

	.values-carousel-prev,
	.values-carousel-next{
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.values-carousel-prev{
		left: 0;
	}

	.values-carousel-next{
		right: 0;
	}
}

/************************************/
/***   Resources Page css           ***/
/************************************/

/* Resources Intro Section */
.section-resources-intro{
	padding: 100px 0;
	background: var(--white-color);
}

.resource-stat-card{
	text-align: center;
	padding: 30px 20px;
	background: var(--white-color);
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	transition: all 0.3s ease-in-out;
}

.resource-stat-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Resources Search and Filter */
.section-resources-filter{
	padding: 60px 0;
}

.resources-search-box{
	position: relative;
	display: inline-block;
	width: 100%;
}

.resources-search-box input{
	padding: 14px 20px 14px 50px;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	width: 100%;
	font-size: 16px;
}

.resources-search-box i{
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0,0,0,0.5);
	z-index: 2;
	pointer-events: none;
	font-size: 16px;
}

.resources-filter-tabs{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.filter-tab{
	padding: 10px 20px;
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 25px;
	color: rgba(0,0,0,0.7);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.filter-tab:hover{
	background: rgba(20, 50, 150, 0.1);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.filter-tab.active{
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white-color);
}

/* Resources Grid */
.section-resources-grid{
	padding: 80px 0;
	background: var(--white-color);
}

.resource-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	position: relative;
	overflow: hidden;
}

.resource-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	border-color: var(--primary-color);
}

.resource-type-badge{
	display: inline-block;
	padding: 5px 12px;
	background: rgba(20, 50, 150, 0.1);
	color: var(--primary-color);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.resource-title{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1.3;
}

.resource-category{
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: rgba(0,0,0,0.5);
	margin-bottom: 15px;
}

.resource-description{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 15px;
}

.resource-meta{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.resource-year{
	font-size: 14px;
	color: rgba(0,0,0,0.5);
	font-weight: 500;
}

.resource-link{
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
}

.resource-link:hover{
	color: var(--primary-color);
	text-decoration: none;
}

.resource-link i{
	margin-left: 5px;
	transition: transform 0.3s ease-in-out;
}

.resource-link:hover i{
	transform: translateX(5px);
}

#resources-results-count{
	font-size: 15px;
}

#resources-empty{
	padding: 60px 20px;
}

@media (max-width: 991px){
	.section-resources-intro,
	.section-resources-filter,
	.section-resources-grid{
		padding: 60px 0;
	}

	.resources-filter-tabs{
		gap: 8px;
	}

	.filter-tab{
		padding: 8px 16px;
		font-size: 13px;
	}

	.resource-card{
		padding: 25px;
	}
}

@media (max-width: 767px){
	.section-resources-intro,
	.section-resources-filter,
	.section-resources-grid{
		padding: 50px 0;
	}

	.resource-stat-card{
		padding: 25px 15px;
		margin-bottom: 20px;
	}

	.resources-filter-tabs{
		gap: 6px;
	}

	.filter-tab{
		padding: 6px 12px;
		font-size: 12px;
	}

	.resource-card{
		padding: 20px;
	}

	.resource-title{
		font-size: 20px;
	}
}

/************************************/
/***   Contract Disclosure css      ***/
/************************************/

/* Contract Intro */
.section-contract-intro{
	padding: 80px 0 40px;
	background: var(--white-color);
}

/* Contract Filters */
.section-contract-filters{
	padding: 30px 0;
	/* Keep filters in normal flow (no floating/sticky bar) */
	position: relative;
	top: auto;
	z-index: auto;
	box-shadow: none;
}

.contract-search-box{
	position: relative;
	width: 100%;
}

.contract-search-box input{
	padding: 12px 20px 12px 45px;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.1);
	width: 100%;
	font-size: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contract-search-box i{
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0,0,0,0.5);
	z-index: 2;
	pointer-events: none;
	font-size: 15px;
}

.contract-filter{
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 12px 15px;
	font-size: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	cursor: pointer;
}

.contract-filter:focus{
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 50, 150, 0.1);
	outline: none;
}

/* Contracts Grid */
.section-contracts-grid{
	padding: 60px 0;
	background: var(--white-color);
}

.contract-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	position: relative;
	overflow: hidden;
}

.contract-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	border-color: var(--primary-color);
}

.contract-popular-badge{
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--primary-color);
	color: var(--white-color);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contract-title{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	line-height: 1.4;
	padding-right: 80px;
}

.contract-parties{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 14px;
}

.contract-parties strong{
	color: rgba(0,0,0,0.9);
	font-weight: 600;
}

.contract-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 25px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.contract-date,
.contract-year,
.contract-type{
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.contract-date i{
	color: var(--primary-color);
}

.contract-year{
	background: rgba(20, 50, 150, 0.1);
	color: var(--primary-color);
	padding: 4px 10px;
	border-radius: 15px;
}

.contract-type{
	background: rgba(0,0,0,0.05);
	padding: 4px 10px;
	border-radius: 15px;
}

.contract-actions{
	margin-top: auto;
}

.btn-contract-view{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease-in-out;
}

.btn-contract-view:hover{
	color: var(--primary-color);
	text-decoration: none;
}

.btn-contract-view i{
	transition: transform 0.3s ease-in-out;
}

.btn-contract-view:hover i{
	transform: translateX(5px);
}

#contracts-empty{
	padding: 60px 20px;
}

/* Tool Intro (for LNG Tracker, Incidents Report) */
.section-tool-intro{
	padding: 100px 0;
	background: var(--white-color);
}

/* Opportunities Section */
.section-opportunities{
	padding: 100px 0;
	background: var(--white-color);
}

@media (max-width: 991px){
	.section-contract-intro,
	.section-contracts-grid{
		padding: 50px 0;
	}

	.section-contract-filters{
		position: relative;
		top: 0;
	}

	.contract-card{
		padding: 25px;
	}

	.contract-title{
		padding-right: 0;
		font-size: 20px;
	}
}

@media (max-width: 767px){
	.section-contract-intro,
	.section-contracts-grid{
		padding: 40px 0;
	}

	.contract-card{
		padding: 20px;
	}

	.contract-title{
		font-size: 18px;
	}

	.contract-meta{
		flex-direction: column;
		gap: 10px;
	}
}

/************************************/
/***   LNG Tracker css             ***/
/************************************/

/* LNG Intro */
.section-lng-intro{
	padding: 80px 0 40px;
	background: var(--white-color);
}

/* LNG Stats */
.lng-stat-card{
	text-align: center;
	padding: 30px 20px;
	background: var(--white-color);
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	transition: all 0.3s ease-in-out;
}

.lng-stat-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* LNG Timeline */
.section-lng-timeline{
	padding: 80px 0;
	position: relative;
}

.lng-timeline{
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 0;
}

.lng-timeline::before{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--primary-color), rgba(20, 50, 150, 0.3));
	transform: translateX(-50%);
}

.timeline-item{
	position: relative;
	margin-bottom: 60px;
	display: flex;
	align-items: flex-start;
}

.timeline-item:nth-child(odd){
	flex-direction: row;
}

.timeline-item:nth-child(even){
	flex-direction: row-reverse;
}

.timeline-marker{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.marker-dot{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--white-color);
	border: 4px solid var(--primary-color);
	box-shadow: 0 0 0 4px rgba(255,255,255,1);
	transition: all 0.3s ease-in-out;
}

.marker-dot-active{
	width: 24px;
	height: 24px;
	border-width: 5px;
	box-shadow: 0 0 0 4px rgba(255,255,255,1), 0 0 0 8px rgba(20, 50, 150, 0.2);
	animation: pulse 2s infinite;
}

@keyframes pulse{
	0%, 100%{
		box-shadow: 0 0 0 4px rgba(255,255,255,1), 0 0 0 8px rgba(20, 50, 150, 0.2);
	}
	50%{
		box-shadow: 0 0 0 4px rgba(255,255,255,1), 0 0 0 12px rgba(20, 50, 150, 0.1);
	}
}

.marker-line{
	width: 2px;
	height: 60px;
	background: rgba(20, 50, 150, 0.2);
	margin-top: 10px;
}

.timeline-item:last-child .marker-line{
	display: none;
}

.timeline-content{
	width: calc(50% - 40px);
	background: var(--white-color);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	position: relative;
	transition: all 0.3s ease-in-out;
}

.timeline-item:nth-child(odd) .timeline-content{
	margin-right: auto;
	text-align: right;
}

.timeline-item:nth-child(even) .timeline-content{
	margin-left: auto;
	text-align: left;
}

.timeline-content:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.timeline-item-active .timeline-content{
	border: 2px solid var(--primary-color);
	box-shadow: 0 5px 25px rgba(20, 50, 150, 0.15);
}

.timeline-date{
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.timeline-stage{
	font-size: 12px;
	font-weight: 600;
	color: rgba(0,0,0,0.5);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.timeline-title{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.3;
}

.timeline-description{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 15px;
}

.timeline-players{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.timeline-item:nth-child(odd) .timeline-players{
	justify-content: flex-end;
}

.player-badge{
	display: inline-block;
	padding: 6px 12px;
	background: rgba(20, 50, 150, 0.1);
	color: var(--primary-color);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.timeline-details{
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.timeline-details p{
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	line-height: 1.6;
	margin-bottom: 8px;
}

.timeline-details strong{
	color: var(--primary-color);
	font-weight: 600;
}

/* Stakeholders Section */
.section-lng-stakeholders{
	padding: 80px 0;
	background: var(--white-color);
}

.stakeholder-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 25px;
	height: 100%;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.stakeholder-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	border-color: var(--primary-color);
}

.stakeholder-card h4{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
}

.stakeholder-card p{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin: 0;
	font-size: 15px;
}

.stakeholder-card--logo .stakeholder-logo{
	width: 100%;
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.stakeholder-card--logo .stakeholder-logo img{
	width: 100%;
	max-width: 220px;
	height: auto;
	display: block;
}

@media (max-width: 991px){
	.section-lng-intro,
	.section-lng-timeline,
	.section-lng-stakeholders{
		padding: 60px 0;
	}

	.lng-timeline::before{
		left: 30px;
	}

	.timeline-item{
		flex-direction: row !important;
		padding-left: 70px;
	}

	.timeline-marker{
		left: 30px;
		transform: translateX(-50%);
	}

	.timeline-content{
		width: 100%;
		text-align: left !important;
		margin: 0 !important;
	}

	.timeline-players{
		justify-content: flex-start !important;
	}
}

@media (max-width: 767px){
	.section-lng-intro,
	.section-lng-timeline,
	.section-lng-stakeholders{
		padding: 50px 0;
	}

	.lng-timeline{
		padding: 20px 0;
	}

	.timeline-item{
		padding-left: 60px;
		margin-bottom: 40px;
	}

	.timeline-marker{
		left: 20px;
	}

	.timeline-content{
		padding: 20px;
	}

	.timeline-title{
		font-size: 18px;
	}

	.timeline-description{
		font-size: 14px;
	}
}

/************************************/
/***   Incidents Report css        ***/
/************************************/

/* Incidents Intro */
.section-incidents-intro{
	padding: 80px 0 40px;
	background: var(--white-color);
}

/* Incidents Filters */
.section-incidents-filters{
	padding: 30px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.incidents-search-box{
	position: relative;
	width: 100%;
}

.incidents-search-box input{
	padding: 12px 20px 12px 45px;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.1);
	width: 100%;
	font-size: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.incidents-search-box i{
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0,0,0,0.5);
	z-index: 2;
	pointer-events: none;
	font-size: 15px;
}

.incident-filter{
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 12px 15px;
	font-size: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	cursor: pointer;
}

.incident-filter:focus{
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 50, 150, 0.1);
	outline: none;
}

/* Incidents Grid */
.section-incidents-grid{
	padding: 60px 0;
	background: var(--white-color);
}

.incident-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
}

.incident-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	border-color: var(--primary-color);
}

.incident-header{
	margin-bottom: 15px;
}

.incident-badges{
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.incident-badge{
	display: inline-block;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.incident-badge-region{
	background: rgba(20, 50, 150, 0.1);
	color: var(--primary-color);
}

.incident-badge-year{
	background: rgba(0,0,0,0.05);
	color: rgba(0,0,0,0.7);
}

.incident-badge-reporter{
	background: rgba(34, 197, 94, 0.1);
	color: #22c55e;
}

.incident-title{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.4;
}

.incident-excerpt{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 15px;
	flex-grow: 1;
}

.incident-meta{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.incident-category,
.incident-type{
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.incident-category i,
.incident-type i{
	color: var(--primary-color);
	font-size: 12px;
}

.incident-actions{
	margin-top: auto;
}

.btn-incident-view{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease-in-out;
}

.btn-incident-view:hover{
	color: var(--primary-color);
	text-decoration: none;
}

.btn-incident-view i{
	transition: transform 0.3s ease-in-out;
}

.btn-incident-view:hover i{
	transform: translateX(5px);
}

.btn-incident-details{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: none;
	background: transparent;
	padding: 0;
	color: var(--primary-color);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.btn-incident-details:hover{
	color: var(--primary-color);
	text-decoration: none;
}

.btn-incident-details i{
	transition: transform 0.3s ease-in-out;
}

.btn-incident-details:hover i{
	transform: translateX(5px);
}

/* Map and Content Layout */
.section-map-content{
	padding: 40px 0 60px;
}

.map-panel{
	background: var(--white-color);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	height: 100%;
	position: sticky;
	top: 100px;
}

.filters-title{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.filter-label{
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: rgba(0,0,0,0.7);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.filters-group{
	border-top: 1px solid rgba(0,0,0,0.08);
	padding-top: 20px;
}

.map-section{
	border-top: 1px solid rgba(0,0,0,0.08);
	padding-top: 20px;
}

.map-instruction{
	font-size: 13px;
}

.tanzania-map-container{
	position: relative;
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	overflow: visible;
}

.tanzania-map{
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
}

.tanzania-map img,
.tanzania-map object{
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-height: 400px;
}

.tanzania-map svg,
.map-svg-object{
	width: 100%;
	height: auto;
	display: block;
	max-height: 400px;
}

.tanzania-map svg path,
.tanzania-map svg g,
.tanzania-map svg polygon{
	cursor: pointer;
	transition: all 0.3s ease;
}

.tanzania-map svg path:hover,
.tanzania-map svg g:hover,
.tanzania-map svg polygon:hover{
	fill-opacity: 0.7;
	stroke: var(--primary-color);
	stroke-width: 2;
}

.region-tooltip{
	position: absolute;
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 8px;
	padding: 10px 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	z-index: 1000;
	pointer-events: none;
	display: none;
	font-size: 13px;
	line-height: 1.5;
}

.region-tooltip strong{
	color: var(--primary-color);
	font-size: 14px;
	display: block;
	margin-bottom: 5px;
}

/* Region Details Panel */
.region-details-panel{
	background: var(--white-color);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	min-height: 600px;
	position: sticky;
	top: 100px;
}

.region-details-content{
	height: 100%;
}

.default-message{
	text-align: center;
	padding: 60px 20px;
	color: rgba(0,0,0,0.5);
}

.default-message h3{
	font-size: 24px;
	font-weight: 600;
	color: rgba(0,0,0,0.7);
	margin-bottom: 15px;
}

.region-details-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(0,0,0,0.08);
}

.region-name{
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

.region-count-badge{
	display: inline-block;
	padding: 8px 16px;
	background: rgba(20, 50, 150, 0.1);
	color: var(--primary-color);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.region-incidents-list{
	max-height: 500px;
	overflow-y: auto;
	padding-right: 10px;
}

.region-incidents-list::-webkit-scrollbar{
	width: 6px;
}

.region-incidents-list::-webkit-scrollbar-track{
	background: rgba(0,0,0,0.05);
	border-radius: 10px;
}

.region-incidents-list::-webkit-scrollbar-thumb{
	background: rgba(20, 50, 150, 0.3);
	border-radius: 10px;
}

.region-incidents-list::-webkit-scrollbar-thumb:hover{
	background: rgba(20, 50, 150, 0.5);
}

.region-incident-item{
	background: rgba(0,0,0,0.02);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.region-incident-item:hover{
	background: rgba(20, 50, 150, 0.05);
	border-color: var(--primary-color);
	transform: translateX(5px);
}

.incident-item-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.incident-item-year{
	font-size: 12px;
	font-weight: 600;
	color: rgba(0,0,0,0.5);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.incident-item-badge{
	display: inline-block;
	padding: 4px 10px;
	background: rgba(34, 197, 94, 0.1);
	color: #22c55e;
	border-radius: 15px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.incident-item-title{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1.4;
}

.incident-item-excerpt{
	color: rgba(0,0,0,0.7);
	line-height: 1.6;
	margin-bottom: 15px;
	font-size: 14px;
}

.incident-item-meta{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.incident-item-category,
.incident-item-type{
	font-size: 12px;
	color: rgba(0,0,0,0.6);
	background: rgba(0,0,0,0.05);
	padding: 4px 10px;
	border-radius: 15px;
}

.section-heading{
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0;
}

.region-stat-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 3px 15px rgba(0,0,0,0.05);
	cursor: pointer;
}

.region-stat-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	border-color: var(--primary-color);
}

.region-stat-card h4{
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.region-count{
	font-size: 14px;
	color: rgba(0,0,0,0.6);
	margin: 0;
}

/* Why Supporting Section */
.section-why-supporting{
	padding: 80px 0;
	background: var(--white-color);
}

.support-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	height: 100%;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.support-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-color: var(--primary-color);
}

.support-icon{
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(20, 50, 150, 0.1);
	border-radius: 50%;
}

.support-icon i{
	font-size: 35px;
	color: var(--primary-color);
}

.support-card h3{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.support-card p{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin: 0;
	font-size: 15px;
}

.support-cta-box{
	background: rgba(20, 50, 150, 0.05);
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	border-left: 4px solid var(--primary-color);
}

.support-cta-box h3{
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.support-cta-box p{
	color: rgba(0,0,0,0.8);
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 15px;
}

.quote-author{
	font-style: italic;
	color: rgba(0,0,0,0.6);
	font-size: 14px;
	margin-top: 20px;
}

@media (max-width: 991px){
	.section-incidents-intro,
	.section-incidents-grid,
	.section-map-content,
	.section-why-supporting{
		padding: 60px 0;
	}

	.region-details-panel{
		position: relative;
		top: 0;
		min-height: auto;
		margin-top: 30px;
	}

	.map-panel{
		position: relative;
		top: 0;
		margin-bottom: 30px;
	}

	.incident-card{
		padding: 25px;
	}
}

@media (max-width: 767px){
	.section-incidents-intro,
	.section-incidents-grid,
	.section-map-filters,
	.section-why-supporting{
		padding: 50px 0;
	}

	.map-filters-panel,
	.region-details-panel{
		padding: 20px;
	}

	.region-details-header{
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.region-name{
		font-size: 24px;
	}

	.incident-card{
		padding: 20px;
	}

	.incident-title{
		font-size: 18px;
	}

	.support-cta-box{
		padding: 30px 20px;
	}

	.tanzania-map img,
	.tanzania-map object{
		max-height: 300px;
	}
}

/* News/Blog Page */
.section-news-intro{
	padding: 60px 0 40px;
}

.section-news-filters{
	padding: 30px 0;
}

.news-search-box{
	position: relative;
}

.news-search-box input{
	padding: 12px 45px 12px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.news-search-box input:focus{
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 50, 150, 0.1);
	outline: none;
}

.news-search-box i{
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0,0,0,0.4);
	pointer-events: none;
	z-index: 10;
}

.news-filter{
	padding: 12px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.news-filter:focus{
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 50, 150, 0.1);
	outline: none;
}

.section-news-grid{
	padding: 40px 0 80px;
}

.news-page{
	background: #f4e9c0;
}

.news-page .section-news-intro{
	background: #143296;
	color: #fdfbf5;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}

.news-page .section-news-intro h2,
.news-page .section-news-intro p{
	color: #fdfbf5;
}

.news-page .section-news-filters{
	background: #f4e9c0;
	border-top: 1px solid rgba(20, 50, 150, 0.08);
	border-bottom: 1px solid rgba(20, 50, 150, 0.08);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.news-page .section-news-grid{
	padding: 60px 0 90px;
	background: #e5f5ea; /* soft green-tinted backdrop */
}

.news-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 30px;
	height: 100%;
	transition: all 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.news-card:hover{
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateY(-5px);
	border-color: var(--primary-color);
}

.news-card-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 10px;
}

.news-category-badge{
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.news-date{
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 5px;
}

.news-date i{
	color: var(--primary-color);
	font-size: 12px;
}

.news-title{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.4;
}

.news-excerpt{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin-bottom: 20px;
	flex-grow: 1;
}

.news-actions{
	margin-top: auto;
}

.news-page .news-card{
	border: none;
	border-radius: 28px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(9,22,33,0.14);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #ffffff;
}

.news-page .news-card__image{
	position: relative;
	overflow: hidden;
}

.news-page .news-card__image img{
	width: 100%;
	height: 230px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.news-page .news-card__pill{
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.news-page .news-card__body{
	padding: 26px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.news-page .news-card__meta{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.news-page .news-title{
	font-size: 20px;
	color: var(--deep-slate);
	margin-bottom: 6px;
}

.news-page .news-excerpt{
	color: rgba(12, 32, 56, 0.78);
	line-height: 1.7;
	margin: 0;
}

.news-page .news-card__cta{
	margin-top: auto;
}

.news-page .news-card:hover .news-card__image img{
	transform: scale(1.04);
}

.news-page .btn-link-news{
	color: #2c895c;
}

#news-count{
	color: rgba(12, 32, 56, 0.7);
}

.btn-news-read{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-news-read:hover{
	background: #0d2a73;
	color: var(--white-color);
	transform: translateX(5px);
}

.btn-news-read i{
	font-size: 12px;
	transition: transform 0.3s ease;
}

.btn-news-read:hover i{
	transform: translateX(3px);
}

#news-count{
	font-size: 15px;
	font-weight: 500;
	color: rgba(0,0,0,0.7);
}

@media (max-width: 991px){
	.section-news-intro,
	.section-news-grid{
		padding: 50px 0;
	}

	.news-card{
		padding: 25px;
	}
}

@media (max-width: 767px){
	.section-news-intro,
	.section-news-grid{
		padding: 40px 0;
	}

	.news-card{
		padding: 20px;
	}

	.news-title{
		font-size: 20px;
	}

	.news-card-header{
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Opportunities Page */
.section-opportunities-intro{
	padding: 60px 0 40px;
}

.section-opportunities-filters{
	padding: 30px 0;
}


.opportunities-search-box{
	position: relative;
}

.opportunities-search-box input{
	padding: 12px 45px 12px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.opportunities-search-box input:focus{
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 50, 150, 0.1);
	outline: none;
}

.opportunities-search-box i{
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0,0,0,0.4);
	pointer-events: none;
	z-index: 10;
}

.opportunity-filter{
	padding: 12px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 8px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.opportunity-filter:focus{
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(20, 50, 150, 0.1);
	outline: none;
}

.section-opportunities-grid{
	padding: 40px 0 80px;
}

.opportunity-card{
	background: var(--white-color);
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 12px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.opportunity-card:hover{
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateY(-5px);
	border-color: var(--primary-color);
}

.opportunity-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 10px;
}

.opportunity-type-badge{
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.opportunity-location{
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	font-weight: 500;
}

.opportunity-location i{
	margin-right: 5px;
	color: var(--primary-color);
}

.opportunity-title{
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
	line-height: 1.4;
}

.opportunity-description{
	color: rgba(0,0,0,0.7);
	line-height: 1.7;
	margin-bottom: 20px;
	flex-grow: 1;
}

.opportunity-meta{
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.opportunity-date,
.opportunity-deadline{
	font-size: 13px;
	color: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	gap: 8px;
}

.opportunity-date i,
.opportunity-deadline i{
	color: var(--primary-color);
	font-size: 12px;
}

.opportunity-actions{
	margin-top: auto;
}

.btn-opportunity-view{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-opportunity-view:hover{
	background: #0d2a73;
	color: var(--white-color);
	transform: translateX(5px);
}

.btn-opportunity-view i{
	font-size: 12px;
	transition: transform 0.3s ease;
}

.btn-opportunity-view:hover i{
	transform: translateX(3px);
}

#opportunities-count{
	font-size: 15px;
	font-weight: 500;
	color: rgba(0,0,0,0.7);
}

@media (max-width: 991px){
	.section-opportunities-intro,
	.section-opportunities-grid{
		padding: 50px 0;
	}

	.opportunity-card{
		padding: 25px;
	}
}

@media (max-width: 767px){
	.section-opportunities-intro,
	.section-opportunities-grid{
		padding: 40px 0;
	}

	.opportunity-card{
		padding: 20px;
	}

	.opportunity-title{
		font-size: 20px;
	}

	.opportunity-header{
		flex-direction: column;
		align-items: flex-start;
	}

	.opportunity-meta{
		font-size: 12px;
	}
}

/************************************/
/***      Global Search Modal      ***/
/************************************/

.search-input-wrapper{
	position: relative;
}
.search-input-wrapper i{
	position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
	color: rgba(0,0,0,0.4); pointer-events: none;
}
.search-input-wrapper .form-control{
	padding-right: 50px;
}
.search-results{
	max-height: 400px; overflow-y: auto;
}
.search-result-item{
	padding: 16px; border-bottom: 1px solid rgba(0,0,0,0.08);
	transition: background 0.2s ease;
}
.search-result-item:hover{
	background: rgba(20,50,150,0.04);
}
.search-result-item:last-child{
	border-bottom: none;
}
.search-result-item__type{
	display: inline-block; padding: 4px 10px; border-radius: 12px;
	font-size: 11px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.5px; margin-bottom: 8px;
}
.search-result-item__type--post{
	background: rgba(20,50,150,0.1); color: #143296;
}
.search-result-item__type--opportunity{
	background: rgba(34,197,94,0.1); color: #22c55e;
}
.search-result-item__type--resource{
	background: rgba(168,85,247,0.1); color: #a855f7;
}
.search-result-item__type--contract{
	background: rgba(251,146,60,0.1); color: #fb923c;
}
.search-result-item__title{
	font-size: 16px; font-weight: 700; color: var(--primary-color);
	margin-bottom: 6px; line-height: 1.4;
}
.search-result-item__title a{
	color: inherit; text-decoration: none;
}
.search-result-item__title a:hover{
	text-decoration: underline;
}
.search-result-item__excerpt{
	font-size: 13px; color: rgba(0,0,0,0.6); line-height: 1.5;
	margin-bottom: 4px;
}
.search-result-item__date{
	font-size: 12px; color: rgba(0,0,0,0.4);
}