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

:root {
    --green: #4a8c6f;
    --green-dark: #2e6650;
    --green-light: #6aad8e;
    --green-pale: #e8f4ee;
    --green-mist: #f2faf5;
    --text: #1a2e24;
    --text-mid: #4a6357;
    --text-light: #8aab98;
    --white: #ffffff;
    --cream: #fafdf8;
    --border: #d4e8dc;
    --shadow: 0 4px 24px rgba(74, 140, 111, 0.12);
}

/* Keeps the icon on the left and the address block on the right */
.contact-detail {
    display: flex;
    align-items: flex-start;
    /* Aligns the icon with the top line of text */
    gap: 15px;
    /* Adds space between the icon and the text */
}

/* Forces the two addresses to stack vertically */
.address-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Adjusts the spacing between Head Office and Communication address */
}

/* Ensures the label and the address text inside each block sit correctly */
.address-item strong {
    display: block;
    /* Puts the address text directly under its bold title */
    margin-bottom: 4px;
}

.address-item span {
    display: block;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    background: rgba(250, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(74, 140, 111, .12);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    /* Use explicit sizing instead of scaling to avoid showing a background box
       behind transparent images in production */
    transform: none;
    transform-origin: left center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: block;
}

/* Fail-safe: ensure logos never get a background or padding from other rules
   (helps when old CSS is cached in production or overridden by vendor styles) */
.nav-logo img,
.footer-logo {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    height: 60px !important;
    width: auto !important;
    display: block !important;
}

/* Ensure img elements carrying the footer-logo class never appear oversized */
img.footer-logo {
    height: 48px !important;
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    display: inline-block !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '' '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .2s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--green);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    position: relative;
    padding: 64px 24px 56px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, var(--green-pale) 0%, var(--cream) 70%);
}

.hero::before {
    content: '' '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(74, 140, 111, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(74, 140, 111, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 140, 111, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.world-dots {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.6) sepia(1) hue-rotate(90deg) saturate(300%);
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-pale);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    color: var(--text);
}

.hero h1 em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: var(--green);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    border: none;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74, 140, 111, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(74, 140, 111, 0.4);
    background: var(--green-dark);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

section {
    padding: 4rem 2rem;
}

.fade-in {
    animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 140, 111, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(74, 140, 111, 0);
    }
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card-main {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
}

.about-card-main h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    color: var(--text);
}

.about-card-main p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    color: var(--text);
    margin-bottom: 16px;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pillar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pillar h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.pillar p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.services {
    background: var(--white);
    padding: 4rem 2rem;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
    color: var(--text);
}

.services-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 10px 16px;
    background: var(--green-pale);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--green);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--green);
    color: var(--white);
}

.tab-btn:hover {
    background: var(--green);
    color: var(--white);
}

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

.service-card {
    background: var(--green-mist);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '' '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 140, 111, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(74, 140, 111, 0.12), 0 0 30px rgba(74, 140, 111, 0.08);
}

.service-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.service-card p {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.55;
    flex: 1;
}

.service-link {
    color: var(--green);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--green-dark);
}

.blog-highlights {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--green-mist);
    border: 1px solid rgba(74, 140, 111, 0.16);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(74, 140, 111, 0.14);
}

.blog-card h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

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

.funding {
    background: var(--green-pale);
    padding: 4rem 2rem;
}

.funding-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.funding-inner h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text);
    margin: 12px 0 16px;
}

.funding-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.funding-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
}

.funding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 140, 111, 0.15);
}

.fund-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    font-family: 'Alkatra', sans-serif;
    margin-bottom: 8px;
}

.fund-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.fund-avail {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.fund-avail:hover {
    color: var(--green-dark);
}

.why {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.why h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text);
    margin: 12px 0 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reason-num {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border: 1.5px solid var(--green);
    border-radius: 50%;
    font-weight: 700;
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
}

.reason h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.reason p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.why-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-big-card {
    background: var(--green-pale);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.why-small-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.why-small-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.why-small-card .num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    font-family: 'Alkatra', sans-serif;
}

.why-small-card p {
    font-size: 0.8rem;
    color: var(--text-mid);
    margin-top: 4px;
}

.faq {
    background: var(--white);
    padding: 4rem 2rem;
}

.faq>div {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text);
    text-align: center;
    margin: 12px 0 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-q {
    padding: 16px;
    background: var(--green-mist);
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-q:hover {
    background: var(--green-pale);
}

.faq-q span {
    font-size: 1.2rem;
    font-weight: 300;
}

.faq-a {
    display: none !important;
    background: var(--white);
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    border-top: 1px solid transparent;
    padding: 0;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    white-space: normal;
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    height: auto;
}

.faq-a.active {
    display: block !important;
    padding: 16px !important;
    border-top-color: var(--border) !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 1000px !important;
    overflow: visible !important;
    height: auto !important;
}

.contact {
    background: var(--cream);
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text);
    margin: 12px 0 16px;
}

.contact-info>p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 1.4rem;
}

.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-detail span {
    font-size: 0.85rem;
    color: var(--text-mid);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 12px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

footer {
    background: var(--text);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 12px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo em {
    font-style: italic;
    color: var(--green);
}

.footer-logo {
    height: 30px;
    width: auto;
    filter: invert(1) brightness(1.2);
    margin-bottom: 8px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    max-width: 1200px;
    margin: 1rem auto 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    text-align: center;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    width: 480px;
    max-width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: popupSlideUp 0.4s ease;
}

@keyframes popupSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-box h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    color: var(--text);
}

.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 10px 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}

.popup-btn {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.popup-btn:hover {
    background: var(--green-dark);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    transition: color 0.2s;
}

.popup-close:hover {
    color: var(--green);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(250, 253, 248, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 1rem;
        padding: 2rem 0;
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .funding-cards {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    * {
        max-width: 100vw;
    }

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

    body {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    nav {
        padding: 0.75rem 1rem;
    }

    .nav-logo img {
        height: 50px;
        transform: scale(2);
    }

    .hamburger span {
        width: 22px;
    }

    .nav-links {
        top: 60px;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .nav-links li {
        padding: 0.75rem 0;
    }

    section {
        padding: 2rem 1rem;
    }

    .hero {
        padding: 5rem 1rem 3rem;
    }

    h1 {
        font-size: clamp(1.6rem, 4vw, 2rem);
        line-height: 1.2;
    }

    h2 {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 12px 1rem;
        font-size: 0.9rem;
    }

    .world-dots {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 16px;
    }

    .funding-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .funding-card {
        padding: 20px 16px;
    }

    .fund-amount {
        font-size: 1.4rem;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        padding: 16px;
    }

    .pillar-icon {
        font-size: 1.6rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-q {
        font-size: 0.9rem;
    }

    .faq-a {
        font-size: 0.85rem;
        max-height: 0;
        overflow: hidden;
    }

    .faq-a.active {
        display: block !important;
        padding: 16px !important;
        max-height: 1000px !important;
        overflow: visible !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .popup-box {
        width: 95%;
        padding: 1.5rem;
    }

    .popup-box h2 {
        font-size: 1.1rem;
    }

    .popup-box input,
    .popup-box select,
    .popup-box textarea {
        font-size: 0.85rem;
        padding: 0.6rem;
    }

    .popup-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.6rem 0.8rem;
    }

    .nav-logo img {
        height: 40px;
        transform: scale(1.5);
    }

    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .about-card-main h3 {
        font-size: 1rem;
    }

    .services-tabs {
        gap: 8px;
    }

    .tab-btn {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .reason-num {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}