@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 body{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  }

.navbar {
    display: flex;
    justify-content: center;
    /* Spreads Logo, Links, and Button */
    align-items: center;
    padding: 0px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 3;
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-blue {
    color: #3b5998;
    /* Dark Blue */
}

.logo-green {
    color: #8cc63f;
    /* Apple Green */
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 14px;
    /* Space between links */
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    padding: 10px 0;
}

.nav-links li a:hover {
    color: #8cc63f;
}

/* Button Styling */
.donate-btn {
    background-color: #8cc63f;
    /* Matching Green */
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 10px;
    /* Rounded pill shape */
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    background: linear-gradient(93deg, #0f7037, #24da16);
}

.donate-btn:hover {
    background-color: #7ab336;
}

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

.hero-section {
    background-color: #e7ece0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
    min-height: 450px;
    /* font-family: 'Montserrat', sans-serif; */
    /* Applied exact font */
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
}

/* Exact Text Styling */
.main-title {
    color: #4cae68;
    font-size: 85px;
    /* Large scale per image */
    line-height: 0.85;
    /* Tight vertical spacing */
    font-weight: 900;
    /* Extra heavy weight */
    /* letter-spacing: -3px; */
    /* Pulls letters together for the 'logo' look */
    margin-bottom: 25px;
    /* text-transform: lowercase; */
    /* Matches the image style */
}

.sub-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 600;
    /* Bold subtext */
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
}

/* Button Styling */
.read-more-btn {
    display: inline-block;
    background-color: #699d41;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 10px;
    /* Slightly rounded corners */
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    background: linear-gradient(93deg, #0f7037, #24da16);
}

.read-more-btn:hover {
    background-color: #3e9154;
    transform: scale(1.05);
}

.hero-image img {
    max-width: 500px;
    height: auto;
}

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

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    background-color: #ffffff;
    color: #333;
}

.about-section {
    padding: 80px 10%;
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1280px;
    justify-content: space-between;
    width: 100%;
}

/* Image Layout with Overlap */
.image-wrapper {
    flex: 1;
    position: relative;
    height: 450px;
}

.main-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sub-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: -40px;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Layout */
.content-wrapper {
    flex: 1;
}

.section-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Highlighted Gray Box */
.highlight-box {
    background-color: #f7f7f7;
    border-left: 4px solid #f9b83a;
    /* Yellow accent line */
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.highlight-box strong {
    color: #e63946;
    /* Red text part */
}

/* Mission & Vision Grid */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-vision h3 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-vision h3 i {
    color: #e63946;
    /* Red icon color */
    font-size: 18px;
}

.mission-vision p {
    /* font-size: 13px; */
    color: #777;
    line-height: 1.4;
}

/* Yellow Button */
.discover-btn {
    display: inline-block;
    background-color: #699d41;
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background 0.3s;
    background: linear-gradient(93deg, #0f7037, #24da16);
}

.discover-btn:hover {
    background-color: #3e9154;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 

.programmes-section {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 70px 0px;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #dbeafe, transparent);
}

/* Header Styling (Title with lines) */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.section-header .title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-background-clip: text;
    background: linear-gradient(90deg, #03509b, #699d40);
    -webkit-text-fill-color: transparent;
}

.section-header .line {
    height: 1px;
    width: 80px;
    background-color: #35465a;
    /* Light grey line */
}

/* Grid Layout */
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 30px;
    /* Space between cards */
}

/* Card Styling */
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: transform 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: auto;
    /* background-color: #e2e8f0; */
    /* Placeholder color for images */
}

.card-body {
    padding: 25px;
    text-align: left;
}

.card-body h3 {
    font-size: 20px;
    color: #5a8bae;
    /* Muted blue color from image */
    margin-bottom: 15px;
    font-weight: 600;
}

.card-body p {
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-body .read-more {
    display: block;
    text-align: right;
    /* Aligned to the bottom right */
    text-decoration: none;
    color: #4cae68;
    /* Green "Read More" */
    font-size: 13px;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programmes-grid {
        grid-template-columns: 1fr;
    }
}

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

.main-wrapper {
    width: 100%;
}

/* Join Us Section */
.join-us-section {
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.join-card {
    height: 180px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.card-label {
    font-size: 18px;
    font-weight: 500;
}

.icon-placeholder {
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-light {
    background-color: #d6ebd0;
}

.blue-light {
    background-color: #dbeafe;
}

/* Statistics Section */
.stats-section {
    background-color: #2d6a3e;
    /* Dark forest green */
    padding: 60px 5%;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.number {
    font-size: 56px;
    font-weight: 300;
}

.stat-icon {
    width: 60px;
    height: 60px;
    /* Images will be inserted here */
}

.stat-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {

    .join-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .join-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

.main-wrapper {
    width: 100%;
}

/* Join Us Section */
.join-us-section {
    padding: 30px 5% 100px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-background-clip: text;
    background: linear-gradient(90deg, #03509b, #699d40);
    -webkit-text-fill-color: transparent;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.join-card {
    height: unset;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-label {
    font-size: 18px;
    font-weight: 500;
    display: block;
    text-align: center;
    font-weight: 500;
    margin: 10px 0 20px;
}

.icon-placeholder {
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-light {
    background-color: #d6ebd0;
}

.blue-light {
    background-color: #dbeafe;
}

/* Statistics Section */
.stats-section {
    background-color: #2d6a3e;
    /* Dark forest green */
    padding: 60px 5%;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
}

.number {
    font-size: 30px;
    font-weight: 300;
}

.stat-icon {
    width: auto;
    height: auto;
    /* Images will be inserted here */
}

.stat-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: max-content;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {

    .join-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .join-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

.sdg-section {
    width: 100%;
    padding: 2px;
    background-color: #000;
    /* Thin black borders between items */
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Exactly 6 columns */
    gap: 2px;
}

.goal-card {
    position: relative;
    height: 320px;
    /* Aspect ratio similar to image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tile {
    width: 100%;
    height: 100px;
    padding: 10px;
    color: white;
    font-family: 'Arial Narrow', sans-serif;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
}

.tile span {
    display: block;
    font-size: 20px;
    margin-bottom: 2px;
}

/* SDG Exact Color Palette */
.red {
    background-color: #E5243B;
}

.mustard {
    background-color: #DDA63A;
}

.green {
    background-color: #4C9F38;
}

.scarlet {
    background-color: #C5192D;
}

.orange-red {
    background-color: #FF3A21;
}

.cyan {
    background-color: #26BDE2;
}

.yellow {
    background-color: #FCC30B;
}

.wine {
    background-color: #A21942;
}

.orange {
    background-color: #FD6925;
}

.pink {
    background-color: #DD1367;
}

.gold {
    background-color: #FD9D24;
}

.olive {
    background-color: #BF8B2E;
}

.dark-green {
    background-color: #3F7E44;
}

.blue {
    background-color: #0A97D9;
}

.lime {
    background-color: #56C02B;
}

.dark-cyan {
    background-color: #00689D;
}

.dark-blue {
    background-color: #19486A;
}

/* Special Logo Card */
.logo-card {
    background-color: white;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo-card img {
    max-width: 80%;
    margin-bottom: 20px;
}

.logo-card a {
    color: #0A97D9;
    text-decoration: none;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .sdg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonial-section {
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(181deg, #dbeafe63, transparent);
}

.main-title {
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #4ea254;
    margin: 0 0 30px;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-background-clip: text;
    background: linear-gradient(90deg, #03509b, #699d40);
    -webkit-text-fill-color: transparent;
}

.testimonial-container {
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    text-align: left;
    gap: 50px;
}

/* Portrait Styling */
.portrait-wrapper {
    position: relative;
    flex-shrink: 0;
}

.red-circle-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #e91e43;
    /* Bright Red */
    border-radius: 50%;
    top: -10px;
    left: -20px;
    z-index: 1;
}

.image-border {
    position: relative;
    width: 200px;
    height: 200px;
    border: 4px solid #e91e43;
    border-radius: 50%;
    padding: 8px;
    z-index: 2;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.main-portrait {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ddd;
    /* Placeholder color */
    overflow: hidden;
}

.main-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Styling */
.content-wrapper {
    position: relative;
    padding: 20px 0;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.quote-icon {
    width: 40px;
    height: 40px;
    opacity: 0.1;
    /* Very faint like in the image */
    position: absolute;
}

.top-quote {
    top: -20px;
    left: -30px;
}

.bottom-quote {
    bottom: 60px;
    right: 200px;
}

/* Author Text */
.author-name {
    font-size: 24px;
    font-weight: 700;
    color: #444;
}

.author-subtitle {
    font-size: 16px;
    color: #e91e43;
    font-weight: 600;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        text-align: center;
    }

    .bottom-quote {
        right: 0;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
.gallery-section {
    padding: 60px 0px 100px;
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(179deg, #c4d6b6, transparent);
}

/* Gallery Heading */
.gallery-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #000000;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-background-clip: text;
    background: linear-gradient(90deg, #03509b, #699d40);
    -webkit-text-fill-color: transparent;
}

/* 4x2 Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Exactly 4 columns */
    gap: 20px;
    /* Precise spacing between images */
}

/* Image Container */
.gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Maintains the rectangular shape shown */
    overflow: hidden;
    background-color: #cccccc;
    /* Placeholder grey for empty slots */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the box without stretching */
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

/* Subtle hover effect for interactivity */
.gallery-item img:hover {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x4 on tablets */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1x8 on small phones */
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
.main-footer {
    background-color: #1a1a1a;
    /* Dark charcoal */
    color: #999;
    /* Muted grey text */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

/* Footer Top Styling */
.footer-top {
    padding: 60px 0;
}

.footer-col {
    flex: 1;
    margin-right: 40px;
}

.footer-col:last-child {
    margin-right: 0;
}

/* Logo */
.footer-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
}

.footer-logo .blue {
    color: #3b5998;
}

.footer-logo .green {
    color: #8cc63f;
}

.about-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Headings */
.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info {
    margin-bottom: 5px !important;
}

/* Map Area */
.map-placeholder {
    width: 100%;
    height: 180px;
    background-color: #2c2c2c;
    /* Grey box for map */
    border-radius: 4px;
}

/* Footer Bottom Styling */
.footer-bottom {
    background-color: #000;
    /* Pure black */
    padding: 20px 0;
}

.footer-bottom .footer-container {
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #666;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #666;
    /* Grey circles */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #8cc63f;
    /* Changes to green on hover */
}.topbar{background-color: #447bbe;padding: 10px 0;display: flex;align-items: center;justify-content: center;color: #fff;font-weight: 300;font-size: 13px;}.topbar a{ color: #fff; text-decoration: none;}
.logo a{
    display: flex;
}
/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .footer-bottom .footer-container {
        gap: 20px;
    }
}


.card-goal {
    position: relative;
    cursor: pointer;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 0 solid rgb(0 0 0 / 39%);
    border-radius: 0;
}
.card-goal > a {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.33);
}
.card-goal .card-body {
    padding: 20px;
    opacity: 0;
    position: relative;
    width: 100%;
    height: 100%;
    color: #ffffff;
    z-index: 3;
}.card-goal .goal-number {
    opacity: 0.28;
    /* font-family: "Oswald-Bold"; */
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    line-height: 1.11;
    font-weight: 600;
}.card-goal .goal-title {
    /* font-family: "Oswald-Bold"; */
    font-size: 18px;
    line-height: 1.11;
    color: #fff;
}.card-goal .goal-text {
    /* font-family: "Roboto-Medium"; */
    font-size: 11px;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}.card-goal .goal-info {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}.card-goal .btn-goal {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 1px;
    border: 1px solid #ffffff;
    color: #ffffff;
    justify-content: center;
    font-size: 14px;
    background: no-repeat;
}.card-goal .goal-info > div {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    padding-left: 0;
    width: 50%;
}

.view-content {
  display: grid;
  /* Creates 6 equal-width columns */
  grid-template-columns: repeat(6, 1fr);
  /* Optional: Adds space between the items */
  gap: 0px;
}


.card-goal.goal-1 .card-body {
  background: #e5233d;
}
/* line 29457, ../sass/bundle.scss */
.card-goal.goal-2 .card-body {
  background: #dda73a;
}
/* line 29461, ../sass/bundle.scss */
.card-goal.goal-3 .card-body {
  background: #4ca146;
}
/* line 29465, ../sass/bundle.scss */
.card-goal.goal-4 .card-body {
  background: #c5192d;
}
/* line 29469, ../sass/bundle.scss */
.card-goal.goal-5 .card-body {
  background: #ef402c;
}
/* line 29473, ../sass/bundle.scss */
.card-goal.goal-6 .card-body {
  background: #27bfe6;
}
/* line 29477, ../sass/bundle.scss */
.card-goal.goal-7 .card-body {
  background: #fbc412;
}
/* line 29481, ../sass/bundle.scss */
.card-goal.goal-8 .card-body {
  background: #a31c44;
}
/* line 29485, ../sass/bundle.scss */
.card-goal.goal-9 .card-body {
  background: #f26a2d;
}
/* line 29489, ../sass/bundle.scss */
.card-goal.goal-10 .card-body {
  background: #e01483;
}
/* line 29493, ../sass/bundle.scss */
.card-goal.goal-11 .card-body {
  background: #f89d2a;
}
/* line 29497, ../sass/bundle.scss */
.card-goal.goal-12 .card-body {
  background: #bf8d2c;
}
/* line 29501, ../sass/bundle.scss */
.card-goal.goal-13 .card-body {
  background: #407f46;
}
/* line 29505, ../sass/bundle.scss */
.card-goal.goal-14 .card-body {
  background: #1f97d4;
}
/* line 29509, ../sass/bundle.scss */
.card-goal.goal-15 .card-body {
  background: #59ba48;
}
/* line 29513, ../sass/bundle.scss */
.card-goal.goal-16 .card-body {
  background: #126a9f;
}
/* line 29517, ../sass/bundle.scss */
.card-goal.goal-17 .card-body {
  background: #13496b;
}   
.view-content a{height: 500px;color: #fff;text-decoration: none;font-size: 15px;display: flex;align-items: center;justify-content: center;}.card-goal .goal-logo {
    position: absolute;
    max-width: 150px;
    left: 10px;
    bottom: 10px;
    z-index: 1;
}.card-goal:hover .card-body {
    opacity: 1;
}
.goal-global .goal-image {
    max-width: 180px;
    height: auto;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.seeall a{color: #000 !important;flex-direction: column;}
.programmes-grid p{ color: #000;}
.programmes-grid .card{ border-radius: 10px;}
.testimonial-section .main-title{ font-size: 40px;}

/* Ensure the swiper container fits your layout */
.mySwiper {
    width: 100%;
    max-width: 900px; /* Adjust to your preferred width */
    margin: 0 auto;
    overflow: hidden; /* Keeps things tidy */
}

/* Ensure the slide content aligns correctly */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-wrapper{ display: flex;align-items: center;
    gap: 40px; padding: 0 50px;}
.gallery-section .container{ flex-direction: column;}
.testimonial-section .container{ display: block;}
.hero-section{overflow: hidden;}
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.3s ease; width: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    transition: 0.3s;
    user-select: none;
}

.nav-arrow:hover {
    color: #044c98;
}

.left-arrow {
    left: 30px;
}

.right-arrow {
    right: 30px;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.footer-col a{ color: #aaa;} .topbar span{display: flex;gap: 20px;} .topbar p{margin: 0 !important;}
.nav-button{padding-left: 30px;display: flex;align-items: center;gap: 10px;}
.nav-button a{
    color: #000;
    text-decoration: none;
} .nav-button a.donate-btn{}

/* Hide the submenu by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fdfffb;
    min-width: 210px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease; /* Smooth effect */
    box-shadow: 0 16px 16px rgb(0 0 0 / 8%);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid #ddd;
}

/* Show on hover */
.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Style the links inside the dropdown */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 10px;
}

 .dropdown-menu li{padding: 0 !important;display: block !important;}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -9px; /* Positions it just above the menu */
    left: 72px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #ffffff; /* Matches your dropdown background color */
    z-index: 5;
}
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -11px; /* Positions it just above the menu */
    left: 70px;
    border-left: 14px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 13px solid #cccccca1; /* Matches your dropdown background color */
    z-index: 3;
}
.nav-links li{position: relative;display: flex;align-items: center;padding: 25px 0 25px 3px;}
.nav-links li a.donate-btn{padding: 7px 15px !important;background: #cae5a7;color: #000 !important;}

.innerbanner{background-color: #000;padding: 130px 0;background-size: cover;display: flex;align-items: center;justify-content: center;background-position: 0 center;}  

.innertext{ padding: 0 0 0 55%;}
.innertext h1{ color: #fff; margin: 0 0 10px;}
.innertext p{ color: #fff;}
.aboutcol{padding: 100px 0;display: flex;justify-content: center;background: linear-gradient(0deg, #eef4fb, transparent);margin: 0 0 50px;}

.rowcol{ display: flex; gap: 40px;}
.col-md-6{ width: 50%;}

.aboutcol h4{
    font-size: 30px;
    font-weight: 300;
    /* background-clip: text !important; */
    /* -webkit-background-clip: text !important; */
    /* -webkit-background-clip: text; */
    /* background: linear-gradient(90deg, #03509b, #699d40); */
    /* -webkit-text-fill-color: transparent; */
    margin: 0 0 20px;
}
.aboutcol h3{
    font-size: 34px;
    line-height: 50px;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-background-clip: text;
    background: linear-gradient(90deg, #03509b, #699d40);
    -webkit-text-fill-color: transparent;
}
/* Split Screen Container */
        .main-container {
            display: flex;
            width: 100%;
            height: 100%;
        }

        /* Left Side: Visual/Branding */
        .visual-side {
            flex: 1.2;
            background: linear-gradient(rgba(45, 106, 79, 0.7), rgba(45, 106, 79, 0.7)), 
                        url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 40px;
            text-align: center;
        }

        .visual-side h1 { font-size: 3rem; margin-bottom: 20px; font-weight: 600; }
        .visual-side p { font-size: 1.2rem; opacity: 0.9; max-width: 400px; line-height: 1.6; }

        /* Right Side: Login Form */
        .form-side {
            flex: 1;
            background: #f1ffee;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 140px;
        }

        .login-box {
            width: 100%;
            max-width: 400px;
        }

        .login-box h2 {
            font-size: 2rem;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .login-box p { color: #666; margin-bottom: 30px; }

        .input-group { margin-bottom: 20px; position: relative; }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .input-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
        }

        .btn-login {
            width: 100%;
            padding: 16px;
            background: linear-gradient(93deg, #0f7037, #24da16);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, background 0.3s;
        }

        .btn-login:hover {
            background: #1b4332;
            transform: translateY(-2px);
        }

        .extra-links {
            margin-top: 25px;
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
        }

        .extra-links a {color: #209511;text-decoration: none;font-weight: 600;}

        /* Responsive for Mobile */
        @media (max-width: 900px) {
            .visual-side { display: none; }
            .form-side { background: #f0f4f2; }
            .login-box { 
                background: white; 
                padding: 40px; 
                border-radius: 20px; 
                box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            }
        }
.hero {
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1521791136064-7986c2959210?auto=format&fit=crop&w=1200');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; }
        .hero-content p { font-size: 1.2rem; opacity: 0.9; }

        /* --- Intro Section --- */
        .section { padding: 80px 10%; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        
        .image-box img { width: 100%; border-radius: 20px; shadow: 0 20px 40px rgba(0,0,0,0.1); }
        
        .content-box h2 { color: var(--primary); font-size: 2.2rem; margin-bottom: 20px; }
        .content-box p { margin-bottom: 20px; color: var(--text-light); font-size: 1.1rem; }

        /* --- Stats/Impact Section --- */
        .stats-bar {
            background: #363030;
            color: white;
            display: flex;
            justify-content: space-around;
            padding: 50px 10%;
            text-align: center;
            max-width: 1250px;
            margin: 0 auto;
            border-radius: 20px;
        }
        .stat-item h3 { font-size: 2.5rem; margin-bottom: 5px; color: var(--secondary); }
        .stat-item p { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

        /* --- Mission & Vision (Cards) --- */
        .cards-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 50px rgb(0 0 0 / 13%);
            transition: transform 0.3s;
            border-top: 5px solid var(--primary);
        }
        .card:hover { transform: translateY(-10px); }
        .card h3 { margin-bottom: 15px; color: var(--primary); }

        /* --- Call to Action --- */
        .cta {
            background: var(--secondary);
            text-align: center;
            padding: 60px 20px;
            margin: 40px 10%;
            border-radius: 30px;
        }
        .cta h2 { margin-bottom: 20px; }
        .cta-btn {
            background: var(--primary);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
        }

        @media (max-width: 768px) {
            .grid-2, .cards-container { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.2rem; }
            .stats-bar { flex-direction: column; gap: 30px; }
        }
        .image-box img{ height: 400px; object-fit: cover;}
.vision-statement {
            background: #fff;
            margin: -40px 10% 60px;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 30px;
            border-left: 8px solid var(--accent);
        }
        .vision-statement i { font-size: 2.5rem; color: var(--accent); }
        .vision-text { font-style: italic; font-size: 1.2rem; color: var(--primary); }

       
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
        }

        /* --- Trustee Card --- */
        .card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            text-align: center;
            border: 1px solid #eee;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .img-container {
            height: 300px;
            overflow: hidden;
            background-color: #f0f0f0;
        }
        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover img { transform: scale(1.1); }

        .card-info { padding: 25px; }
        .card-info h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 5px; }
        .card-info span { 
            display: block; 
            color: var(--accent); 
            font-weight: 600; 
            text-transform: uppercase; 
            font-size: 0.8rem; 
            letter-spacing: 1.5px;
            margin-bottom: 15px;
        }
        .card-info p { font-size: 0.9rem; color: #666; margin-bottom: 20px; height: 60px; overflow: hidden; }

        /* --- Social Icons --- */
        .socials { display: flex; justify-content: center; gap: 15px; }
        .socials a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #f0f0f0;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: 0.3s;
        }
        .socials a:hover { background: var(--primary); color: white; }

        /* --- Footer CTA --- */
        .governance-footer {
            text-align: center;
            padding: 40px;
            background: #f1f3f2;
            border-radius: 15px;
            margin-top: 50px;
        }

        @media (max-width: 768px) {
            .page-header h1 { font-size: 2.2rem; }
            .vision-statement { flex-direction: column; text-align: center; margin: -20px 5% 40px; }
        }

        .ourvision{display: flex;align-items: center;justify-content: center;position: relative;z-index: 2;padding: 0 0 100px;}
.view-content .card{ border: none; padding: 0; border-radius: 0;}
.programmes-grid .card{ padding: 0;}
.programmes-grid .card img{ width: 100%;}

/* Donation Form */
        .donation-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .donation-grid { grid-template-columns: 1fr; }
        }

        .amount-selector {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .amount-btn {
            border: 2px solid var(--primary);
            background: #eee;
            padding: 15px;
            font-weight: bold;
            cursor: pointer;
            border-radius: 8px;
            transition: 0.3s;
            color: var(--primary);
        }

        .amount-btn:hover, .amount-btn.active {
            background: #ddd;
            color: #000;
        }

        input[type="number"], input[type="text"], input[type="email"], select {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 6px;
            box-sizing: border-box;
        }

        .btn-submit {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 18px;
            width: 100%;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 20px;
            font-size: 14px;
            font-weight: bold;
            transition: background-color 0.3s;
            background: linear-gradient(93deg, #0f7037, #24da16);
        }

        .btn-submit:hover {
            background: #218838;
        }

        /* Impact Section */
        .impact-box {
            background: #eef7ff;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid var(--primary);
        }

        .program-tag {
            display: inline-block;
            background: #eee;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin: 5px;
        }

        .bank-details {
            margin-top: 30px;
            padding: 20px;
            background: #fff3cd;
            border-radius: 8px;
            font-size: 0.9rem;
        }
        .donatecol{display: flex;justify-content: center;padding: 100px 0;}







