@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 15px;
}
/*:root {    
    --primary: {{ primary }};
    --secondary: {{ secondary  }};
    --primary-light: {{ primary_light }};
    --secondary-light: {{ secondary_light }};
    --heading-text: {{ heading }};
    --dark: {{ dark }};
    --primary-tone: {{ primary_tone }};
    --secondary-tone: {{ secondary_tone }};
    --dark-text: {{ dark_text }};
    --normal-text: #897b76;
    --light-ash: #eee;
    --light-text: #ffffff;
}*/

:root {
/*    --primary: #126A16;*/
    --primary: #206040;
    --primary-dark: #cc2c00;
    /*--secondary: #165A8A;*/
    --secondary: #ff944d;
    --primary-light: #f0f8f5;
    /*--secondary-light: #6DB2E7;*/
    --secondary-light: #ffe0cc;
    --third: #3EB53F;
    --dark: #000e14;
    --primary-tone: #897b76;
    --secondary-tone: #768489;
    --dark-text: #000e14;
    --normal-text: #595959;
    --normal-text-darker: #595959;
    --light-ash: #eee;
    --light-text: #ffffff;
}

body {
    font-family: "inter","Poppins",Arial, Helvetica, sans-serif;
    line-height: 1.5;
    letter-spacing: .8px;
/*    background-color: var(--light-ash);*/
/*    background-color: {{ backgroundColor }};*/
    font-weight: 400;
    line-height: 1.5;
    body: 16px;
}
a {
    text-decoration: none;
}
p {
    color: var(--normal-text);
    font-size: 15px;
    line-height: 26px;
}
li {
    list-style: none;
    font-size: 15px;
    line-height: 26px;
    color: var(--normal-text);

}
button {
    outline: none;
    border: none;
}

.container {
    width: 85%;
    margin: auto;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.text-white {
    color: white !important;
}
.img-fluid {
	display: block;
	width: 100%;
}
.mx-auto {
	margin: auto;
}
.secondary-text {
    color: var(--secondary);
}
.primary-text {
    color: var(--primary);
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    line-height: 100px;
/*    transition: background-color 0.3s ease;*/
    z-index: 3;
/*    background-color: black;*/
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Creates a subtle shadow */
/*    display: none;*/
}
@media(max-width: 430px) {
    header .container {
        width: 90%;
    }
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    width: 20%;
}
.header-links {
    display: flex;
    width: 80%;
/*    transition: 5s ease;*/
    justify-content: flex-end;
}
@media(max-width: 899px) {
    .header-links {
        display: none;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        background-color: white;
        height: 100vh;
/*        transition: 5s ease;*/
        padding-left: 10px;
        padding-right: 10px;
    }
}

.navbar-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;

}
.nav-brand {
    text-decoration: none;
    color: white;
}
.nav-brand .logo {
    vertical-align: middle;
    width: 170px;
}
.nav-toggler {
    display: none;
    background-color: transparent;
    outline: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 4000;
}
.nav-toggler svg path {
    fill: var(--normal-text);
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
/*    padding: 0 1rem;*/
/*    width: 50%;*/
}
.nav-item {
    display: inline;
    padding-left: 1.5rem;
    list-style-type: none;
}
.nav-item span {
/*    background-color: blue;*/
}
.nav-item svg {
    vertical-align: middle;
}
.nav-item path {
    fill: #777;
}
.nav-link {
    text-decoration: none;
/*    color: #bfbfbf;*/
    color: #777;
}
.nav-link:hover {
    color: var(--secondary);
}
.nav-link.active {
    color: var(--secondary);
}
.donate-link {
    padding: 10px 10px;
    outline: none;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    color: #eee;
/*    display: block;*/
/*    width: 100%;*/
}
.donate-link:hover {
    background-color: var(--primary-light); 
/*    color: #eee;*/
}
.auth-close {
    font-size: 23px;
    color: var(--dark-text);
}
.auth-logo {
    display: block;
    text-align: center;
}
.nav-toggler .close {
    display: none;
}

.nav-item-dropdown:hover .dropdown-content {
    display: block;
}

/*.dropdown-content {
    display: none;
    background-color: white;
    box-shadow: -1px 2px 7px 4px rgba(90, 90, 90, 0.1);
    position: absolute;
    width: 200px;
    right: 0;
    top: 100%;
    padding: 0.5rem 0;
    border-radius: 10px;
}


.dropdown-content li {
    font-size: 12px;
    line-height: 2;
    padding: 3px;
    margin: 0;
    color: white;
}
.dropdown-content a, .dropdown-content span {
    color: white;
    display: block;
    cursor: pointer;
    padding-left: 0.5rem;
}
.dropdown-content li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.dropdown-content li i {
    font-size: 14px;
    color: var(--secondary-tone);
    display: inline-block;
    margin-right: 10px;
}
*/

.dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute;
    top: 100%; /* Position below the parent */
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 150px;
    z-index: 10;
}

/* Dropdown items */
.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-content li {
    margin: 0;
    padding: 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #777;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #000;
}


@media (max-width: 899px) {
    .navbar-nav {
        display: block;
    }
    
    .nav-toggler {
        display: block;
        z-index: 1001;
    }
    .nav-item {
        display: block;
        border-radius: 5px;
        text-align: center;
        padding: 0;
        line-height: 4;
        background-color: white;
    }
    .donate-link {
        border: none;
        margin-top: 5px;
        padding: 10px;
    }

    .nav-item-dropdown:hover .dropdown-content {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
        background-color: whitesmoke !important;
    }
/*  commented  */

    
    .nav-link {
        display: block;
    }
    .nav-link:hover {
        background-color: var(--primary-light);

    }
    .navbar-collapse {
        display: none;
        background-color: white;
        padding: 0 10px;
    }
    
    
    body.active .navbar-collapse {
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 3;
        width: 100%;
        display: block;
    }

    .nav-toggler:hover + .navbar-collapse, .navbar-collapse:hover {
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 3;
        width: 100%;
        display: block;
    }
    body.active .header-links {
        padding-top: 80px;
        display: block;
        z-index: 50;
    }

    body.active header.scrolled {
        background-color: rgb(58, 90, 64);
    }
    body.active .nav-toggler .close {
        display: block;
    } 

    body.active .nav-toggler .open {
        display: none;
    }

    .dropdown-content {
        padding-top: 40px;
        width: 100%;
        background-color: transparent !important;
    }
    .dropdown-content li a {
        font-size: 12px;
        line-height: 4;
    }

/*  commented  */
    
}




.hero {
    background: url('../images/banner.jpg') no-repeat right top;
/*    background: url({{ custom_asset('images/banner.jpg') }}) no-repeat center top;*/
    height: 600px;
    position: relative;
    z-index: 0;
    padding-top: 100px;
}
@media(max-width: 820px){
    .hero {
    	background: url('../images/banner-mobile.jpg') no-repeat center top;
/*     background: url({{ custom_asset('images/banner.jpg') }}) no-repeat right top;   */
    }
}

/*@media(max-width: 450px){
    .hero {
    	background: url('../images/banner-mobile.jpg') no-repeat center top;
        background: url({{ custom_asset('images/banner-mobile.jpg') }}) no-repeat center top;   
    }
}*/
.hero::before {
    content: "";
    background: rgba(0, 14, 20, 0.5);
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
/*    text-align: center;*/
}
.hero .row {
    height: 350px;
}
.hero {
    display: flex;
    /*align-items: center;*/
}
.hero-left-content {
    height: inherit;
    flex-grow: 1;
    max-width: 600px;
    /*text-align: center;*/
    /*margin: auto;*/
/*    background: beige;*/
}
@media(max-width: 820px){
    .hero-left-content {
        
    }
}
.hero-left-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f2f2f2;
    text-transform: uppercase;
    line-height: 1.1;
    
}
.hero-left-content h3 {
	font-size: 16px;
	color: var(--secondary-light);
	margin-bottom: 1rem;
}
.hero-left-content p {
    color: #DAD7CD;
}

.top-space {
    margin-top: 50px;
}


.hero-1 {
/*    background: url({{ custom_asset('images/banner.jpg') }}) no-repeat center top;*/
    background: url('../images/banner.jpg') no-repeat center top;
    height: 350px;
    position: relative;
    z-index: 0;
    text-align: center;
    padding-top: 100px;
}
.hero-1::before {
    content: "";
    background: rgba(0, 14, 20, 0.5);
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    text-align: center;
}
.hero-1 .hero-left-content {
    max-width: 800px;
    margin: auto;
}
@media(max-width: 450px) {
    .hero-1 .hero-left-content h1 {
        font-size: 22px;
        margin-bottom: 2rem;
        word-wrap: break-word;
    }
    .hero-1 .hero-left-content h3 {
        font-size: 22px;
        margin-bottom: 2rem;
        word-wrap: break-word;
    }

    .hero-1 .hero-left-content p {
        font-size: 16px;
    }

    .hero-left-content {
    	text-align: center;
    }
}




section {
	padding: 6.5rem 0;
}
.section-heading {
	font-size: 2.5em;
	margin-bottom: 1.5rem;
	font-weight: 500;
	color: #333;
	line-height: 1.2;
}

.btn-ib {
    display: inline-block;
    outline: none;
    padding: 12px 39px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    background-color: white;
    margin-top: 2rem;
}
.btn-ib:hover {
    /*background-color: white;
    color: var(--secondary);*/
    opacity: 0.8;
}



/* grid and flex */
.grid-2-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}
.grid-2-in-1-ratio-1-to-5 {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-5-wrap {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-5-to-1 {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-5-to-1-wrap {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-member-contact-display-select {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 10px;
/*    justify-items: center;*/
}

.grid-3-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.grid-3-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
}

.grid-4-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
}

@media(max-width: 810px) {
    .grid-2-in-1-wrap, .grid-3-in-1-wrap, .grid-4-in-1-wrap, .grid-2-in-1-ratio-1-to-5-wrap, .grid-2-in-1-ratio-5-to-1-wrap {
        grid-template-columns: 1fr;
        /*grid-column-gap: 50px;*/
        grid-row-gap: 0px;
    }
}

footer {
	background-color: #fff;
	padding: 3rem 0;
	font-size: 12px;
}

.footer-top-right h3 {
    margin-bottom: 1rem;
}
footer img {
    width: 150px; display: inline-block; margin-bottom: 1rem;
}
.footer-top-right {
    text-align: right;
}

.footer-top-right p {
    margin-bottom: 1rem;
}
footer p.bottom {
    border-top: 1px solid #ddd;
    padding-top: 40px;
	font-size: 13px;
	text-align: center;
}

.footer-social-media-links {

}

.footer-social-media-links a {
	display: inline-flex;
    column-gap: 15px;
	/*margin-right: 1rem;*/
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
}

.footer-social-media-links svg path {
	fill: #fff;
}

.footer-social-media-links svg path:hover {
	fill: black;
}


@media(max-width: 450px) {
    footer img {
        display: block;
        margin: 20px auto;
    }
	footer p, footer h3 {
		text-align: center;
	}

	.footer-social-media-links {
		display: flex;
		justify-content: center;
	}
}








/* subscribe */
form input, form button {
	padding: 15px 20px;
	outline: none;
	border: 2px solid #DAD7CD;
	border-radius: 25px;
	display: block;
	margin-bottom: 1rem;
	width: 100%;
}

form button {
	background-color: var(--primary);
	color: #DAD7CD;
	border: none;
	cursor: pointer;
}

form button:hover {
	opacity: 0.9;
}


.vision-section {
    background: linear-gradient(to bottom, #f9f9f9, #EFFDFA);
    /*background: #fff0e6;*/
}
.card {
    background-color: #fff; /* White background for the card */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06); /* Subtle shadow */
    padding: 1rem; /* Inner spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
    overflow: hidden;
}

/* Add hover effect for interactivity */
.card:hover {
    transform: translateY(-5px); /* Slightly lift the card */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 1rem;
    visibility: hidden;
    /*background-color: rgba(59, 166, 220, 0.9);*/
    background-color: rgba(250, 250, 250, 0.9);
    border-top: 5px solid #777;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
/*    border-radius: 15px 15px 0 0;*/

}
.card-overlay h3 {
    color: #777;
    font-size: 1.2rem;
/*    font-style: italic;*/
    text-transform: capitalize;
}
.card-overlay p {
/*    color: var(--secondary);*/
    font-size: 12px;
}
.card:hover .card-overlay {
    visibility: visible;
}

.goals-card {
	border-radius: 10px;
/*	border-top: 1px solid #DAD7CD;*/
	padding: 1.5rem;
/*	background-color: #F2F2F2;*/
    margin-bottom: 1rem;
}

.goals-card span {
	display: block;
	margin-bottom: 1rem;
}
.goals-card svg path {
	fill: var(--secondary);
}
.goals-card:hover {
    border: 1px solid #eee;
}
.goals-card:hover svg path {
    stroke: var(--secondary);
}
.goals-card h3 {
	font-size: 22px;
	margin-bottom: 1.5rem;
	font-weight: 500;
	color: #333;
}


/* Brief Section */
.brief {
/*    padding: 50px 20px;*/
/*    background-color: #f9f9f9;*/
    background-color: #fff;
    text-align: center;
}

.brief-content {
    max-width: 800px;
    margin: 0 auto;
}

/*.brief h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}*/

.brief p {
/*    font-size: 1.2em;*/
/*    line-height: 1.6;*/
/*    color: #555;*/
    margin-bottom: 30px;
}
@media(max-width: 450px) {
	.brief p {
/*		text-align: justify;*/
	}
}

.brief .btn {
    padding: 10px 20px;
    background-color: var(--primary);
	color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.brief .btn:hover {
	opacity: 0.9;
}

.btn {
    padding: 10px 20px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: block;
    max-width: 250px;
    margin: auto;
    margin-top: 2rem;
}
.btn:hover {
    opacity: .8;
}


/* Book Section */

/*.agent {
   background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}*/
.agent-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.agent-image {
    max-width: 300px;
    border-radius: 10px;
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}
.agent-image  {

}

.agent-details {
    max-width: 600px;
}

.agent-details h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

/*.agent-details p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}*/

.agent-details .btn {
    padding: 10px 20px;
    background-color: var(--primary);
	color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 1.5rem;
}

.agent-details .btn:hover {
    background-color: var(--secondary);
}
@media(max-width: 810px) {
    .agent-image {
        width: 100%;
    }
    .agent-details {
        text-align: center;
    }
}



/* Biography Section */

.section-title {
    font-size: 2.5em;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.biography-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
    font-size: 1.2em;
    text-align: left;
}

.biography-content p {
    margin-bottom: 20px;
}

.biography-content strong {
    color: var(--third); /* Highlighted text */
}

.abt-img-data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.abt-img-data > div:first-child {
    width: 250px;
}
.abt-img-data > div:last-child {
    width: calc(100% - 300px);
}
.abt-img-data h3 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
}
@media(max-width: 450px) {
    .abt-img-data > div:first-child {
        width: 100%;
    }
    .abt-img-data > div:last-child {
        width: 100%;
    }
}
/* coardinal section */
.cardinal-objectives {
    background-color: #f9f9f9; /* Light background for readability */
/*    padding: 40px 20px;*/
/*    font-family: 'Arial', sans-serif;*/
}


.cardinal-objectives ul {
    padding-left: 20px;
    line-height: 1.8;
    color: #333; /* Neutral text color for clarity */
}

.cardinal-objectives ul ul {
    list-style-type: circle;
    margin-left: 20px;
}

.cardinal-objectives li {
    margin-bottom: 10px;
    list-style-type: circle;
}
.cardinal-objectives ul ul li {
    list-style-type: disc;
} 
/* // cardinal */

/* aims and objectives */
.aims-objectives {
    background-color: #f0f8f5; /* Soft green tint */
/*    padding: 40px 20px;*/
    color: #333; /* Neutral text color */
}



.aims-objectives .section-intro {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.aims-objectives .objectives-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.aims-objectives .objectives-list li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.aims-objectives .objectives-list li strong {
    color: #126A16; /* Emphasizing core points with green */
}

.aims-objectives .highlight {
    background-color: #e9f5e8; /* Slightly darker green tint for emphasis */
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
}

.aims-objectives .highlight p {
    margin-bottom: 10px;
}
/* // aims and objectives */

/* blog */

/* Blog Posts Section */
.blog-posts {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
/*    grid-template-columns: 1fr 1fr 1fr;*/
    gap: 20px;
}

.post-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    font-size: 1.3em;
    margin: 15px;
    color: #333;
}

.post-card:hover h3 {
	color: var(--third);
}

.post-card p {
    font-size: 1em;
    color: #555;
    margin: 0 15px 15px;
}

.post-card .post-date {
    font-size: 0.9em;
    color: #888;
    margin: 0 15px 15px;
    display: block;
}


/* core values */

/*.blogger-bg {
    background: url(../images/blogger.jpg) no-repeat center;
    height: 550px;
    position: relative;
    z-index: 1;

}


.blogger-bg::before {
    content: "";
    background: linear-gradient(45deg, var(--primary), #00000026);
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    text-align: center;
    border-radius: 1.23rem;

}*/

.core-values-section {
    padding: 30px 0;
    background-color:  #01161E;/*#f9f9f9;*/
    text-align: center;
/*    background: url(../images/core-values-bg.jpg) no-repeat center;*/
    position: relative;
    z-index: 1;

}

.core-values-section::before {
    content: "";
    /*background: linear-gradient(45deg, #b3003b, #00000026);*/
    background-color: linear-gradient(45deg, var(--secondary), var(--primary));
    /*background: rgba(0, 14, 20, 0.5);*/
    position: absolute;
    top: 0;
    min-height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    text-align: center;
/*    border-radius: 1.23rem;*/
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.value-card {
/*    background: #fff;*/
    border-radius: 25px;
    padding: 20px;
    width: 230px;
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s;

}

.value-card:hover {
    transform: scale(1.05);
    background-color: transparent !important;/* var(--primary)*/;
}
.value-card h3 {
    color: white;
}


.value-card i svg path {
    padding: 5px;
    border-radius: 50%;
    fill: whitesmoke;
}
.value-card:hover i svg {
/*    padding: 5px;*/
/*    border-radius: 50%;*/
    stroke: whitesmoke;
}

.value-card i path {
/*    font-size: 2.5rem;*/
    fill: var(--secondary);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
    margin-top: 20px;
    border-top: 1px solid #aaa;
    padding-top: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #666;
}
@media(max-width: 450px) {
    .value-card p {
        display: none;
    }
}

/* testimonial */
.testimonial-section {
    background-color: #f9f9f9;
}

.testimonial-container {
    max-width: 500px;
}
.testimonial-icon {
    display: block;
    margin: auto;
    margin-bottom: 1rem;
}

.testimonial-icon svg {
    display: block;
    margin: auto;
}

.testimonial-icon path {
    fill: #ccc;
}
.testimonial-source {
    margin-top: 1rem;
}
.short-dash {
    border: 1px solid black;
    display: inline-block;
    width: 20px;
    margin-bottom: 5px;
    margin-right: 5px;
}
/* contact us page */
.contact-section {
/*    padding: 60px 20px;*/
/*    background: linear-gradient(to bottom, #f0f4f8, #ffffff);*/
    /*background: #f0f4f8;*/
    text-align: center;
}

/*.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}*/

.section-description {
    /*font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;*/
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 1.5rem;
}

.detail-item {
    background: #fff;
/*    border-radius: 10px;*/
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/*    border-left: 3px solid #ddd;*/
    padding: 20px;
    width: 280px;
    text-align: center;
}

.detail-item i {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 15px;
}

.detail-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.detail-item p {
/*    font-size: 1rem;*/
/*    color: #555;*/
    margin: 0;
}

.chat-us-up {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    background-color: #caf0f8;
    padding: 7px 10px;
    border-radius: 25px;
    max-width: 350px;
    margin: auto;
}
.chat-us-up:hover {
    opacity: .7;
}
.chat-us-up path {
    fill: green;
}
.chat-us-up span {
    font-size: 12px;
    color: green;
}

.mail-us {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    color: var(--normal-text);
    margin: 1rem 0;
}


.team-section {
/*    padding: 60px 20px;*/
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    text-align: center;
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-name {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0 5px;
    font-weight: bold;
}

.team-position {
    font-size: 1rem;
    color: #777;
}


.services-section {
    padding: 60px 0px;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}
@media(min-width: 460px) {
    .service-row:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.service-image {
    width: 50%;
/*    border-radius: 10px;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    object-fit: cover;
}

.service-content {
    width: 50%;
    text-align: left;
}

.service-title {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }

    .service-image,
    .service-content {
        width: 100%;
        text-align: center;
    }
}

/* Why choose us */

.why-choose-us-section {
    padding: 100px 20px;
/*    background-color: #ffffff;*/
    color: #333;
    text-align: center;
/*    background-color: #f9f9f9;*/
    background-color: #01161E;
    background: url('../images/stats-bg.jpg') no-repeat center right;

}

.why-choose-us-section .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
/*    color: linear-gradient(to bottom, #6DB2E7, #165A8A);*/
/*    color: linear-gradient(to right var(--secondary-light), var(--secondary)) ;*/
}

.why-content {
/*    margin-top: 5rem;*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.reason {
    position: relative;
}

.reason h3 {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 10px;
    z-index: 1;
}

.reason p {
    font-size: 0.9rem;
/*    color: #555;*/
    line-height: 1.6;
}
.reason svg {
    /*position: absolute;
    left: -30px;
    top: 50px;
    z-index: 0;*/
}
.reason svg path {
/*    fill: #e6e6e6;*/
    fill: rgba(238, 133, 26, 0.4);
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    border-top: thin solid #aaa;
    border-bottom: thin solid #aaa;
}

.stat {
/*    background: #f9f9f9;*/
    padding: 20px;
    border-radius: 8px;
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.stat h3 {
    font-size: 3rem;
    color: var(--secondary-light);
    margin: 0;
}

.stat p {
    font-size: 0.9rem;
    color: #ddd;
    margin: 5px 0 0;
}

@media (max-width: 768px) {
    .why-content,
    .statistics {
        grid-template-columns: 1fr;
    }
}

.stat-number {
    font-size: 3.5rem;
    color: #007BFF;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.gallery-section {
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
}

.section-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.overlay-text p {
    font-size: 1rem;
    margin: 5px 0 0;
    color: #ddd;
}


/* Founder Section */
.founder-section {
    padding: 2rem;
    background-color: #f9f9f9; /* Light background for the section */
    color: #333;
}

.founder-info {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.founder-awards {
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #126A16;
    margin-bottom: 1rem;
}

.awards-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.award-image {
    width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.award-image:hover {
    transform: scale(2);
}

.awards-note {
    font-size: 0.9rem;
    color: #555;
}

.volunteering-bg {
    background: url('../images/volunteer.jpg') no-repeat center top;
    height: 500px;
    position: relative;
    z-index: 0;
    padding: 100px 1.5rem;
    border-radius: 32px;
    text-align: center;

}

.volunteering-bg .section-title {
    color: var(--primary-light);
    font-size: 3rem;
    text-transform: uppercase;
}
.volunteering-bg p {
    color: var(--primary-light);
    max-width: 550px;

}
.volunteering-details {
    max-width: 550px;
    margin: 2rem auto;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-radius: 5px;
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr 1fr;*/
/*    grid-column-gap: 20px;*/
}
.volunteering-details h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}
.volunteering-bg input {
    padding: 8px 6px;
    border-radius: 5px;
    width: 100%;
    outline: none;
    border: 1px solid #ccc;
    color: var(--normal-text);
}
.volunteering-bg button {
    padding: 8px 6px;
    border-radius: 5px;
    width: 100%;
    outline: none;
    cursor: pointer;
    background-color: black;
    color: #ddd;
/*    border: none;*/
}
.volunteering-bg button:hover {
    opacity: 0.5;
}
@media(max-width: 450px) {
    .volunteering-bg {
        margin-bottom: 150px;
    }
    .volunteering-bg .section-title {
        font-size: 2.5rem;
    }
    .volunteering-details {
        background-color: rgba(255, 255, 255, 0.8);
        box-shadow: -1px 2px 7px 4px rgba(90, 90, 90, 0.1);
        border-radius: 32px;
    }
    .volunteering-details h3 {
        color: black;
    }

}

/* donations */
.donation-section {
    /*background: linear-gradient(to right, #f7fafc, #eaf4ff);*/
    background: #f7fafc;
    text-align: center;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}
.donation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
}



.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-description {
    color: #555;
    margin-bottom: 40px;
}

.donation-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin-bottom: 40px;
}

.account-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.donation-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.motivational-quote {
    font-style: italic;
    color: #555;
    border-left: 4px solid #777;
    padding-left: 15px;
}

.quote-author {
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.donation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.inquiry-btn {
    background-color: #007bff;
    color: #fff;
}

.inquiry-btn:hover {
    background-color: #0056b3;
}

.donate-btn {
    background-color: #28a745;
    color: #fff;
}

.donate-btn:hover {
    background-color: #1e7e34;
}


/* spinners */
.spinner {

    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background: url(../images/__Iphone-spinner-1.gif) center no-repeat rgba(255, 255, 255, 1);
}

.page-loader-spinner {

    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1999;
    background: url(../images/page-loader-spinner.gif) center no-repeat rgba(255, 255, 255, 1);
}

.work-together {
    /*padding: 0 !important;*/
    position: relative;
}


.work-together .container {
    background-color: var(--primary);
    border-radius: 15px;
    padding: 80px 2.5rem;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.work-together p {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
    color: white;
}
.work-together .take-action {
    display: flex;
    align-items: center;
}

.work-together a {
    color: ghostwhite;
    font-size: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 10px;
    align-content: center;
}
.work-together a svg path {
    fill: ghostwhite;
    stroke: ghostwhite;
}

.work-together a:hover {
    color: var(--primary-light);
    text-decoration: none;

}

@media(max-width: 450px) {
    .work-together {
        text-align: center;
        margin-bottom: 150px;
    }
    .work-together .take-action {
        justify-content: center;
        margin-top: 2rem;
    }
}