html {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    margin: 0 !important; 
}

body.swal2-shown,
body.swal2-height-auto {
    padding-right: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
}

html.swal2-shown {
    overflow-x: hidden !important;
}


:root {
    --saffron: #FF9933;
    --saffron-lt: #FFB366;
    --saffron-dk: #E07800;
    --green: #138808;
    --green-lt: #1aad0a;
    --navy: #000080;
    --navy-lt: #0a0aaa;
    --navy-dk: #00004d;
    --white: #FFFFFF;
    --offwhite: #F5F5F0;
    --gray: #6B7280;
    --light-gray: #e5e5e5;
    --grad-saffron: linear-gradient(135deg, #FF9933, #e3892f);
    --grad-green: linear-gradient(135deg, #138808, #1aad0a);
    --grad-navy: linear-gradient(135deg, #000080, #0a0aaa);
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius: 16px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 80, .08);
    --shadow-md: 0 12px 40px rgba(0, 0, 128, .15);
    --shadow-lg: 0 24px 70px rgba(0, 0, 128, .18);
    --space-xl: clamp(60px, 8vw, 120px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--navy-dk);
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 3px;
    border-radius: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

::selection {
    background: var(--saffron);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 4px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

    /* BACK TO TOP — ALL 3 BUGS FIXED:
    1. Added visibility:hidden/visible (opacity alone doesn't block clicks in all browsers)
    2. z-index:10000 — above .wa-wrapper (9999)
    3. pointer-events toggled via .visible class */
#back-to-top {
    position: fixed;
    bottom: 105px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: var(--grad-saffron);
    border: 2px solid var(--green);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* START hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .4s ease, visibility .4s ease, transform .4s ease, background .3s ease;
    z-index: 10000;
    pointer-events: none;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

#back-to-top:hover {
    background: var(--grad-green);
    transform: translateY(-4px);
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #111111;
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .4s, transform .4s;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    font-family: var(--font-head);
    font-size: clamp(28px, 8vw, 42px);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    transition: color .3s;
}

.mobile-nav a:hover {
    color: var(--saffron);
}

.mobile-nav-close {
    position: absolute;
    top: clamp(20px, 4vw, 32px);
    right: clamp(20px, 4vw, 32px);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, transform .35s, border-color .3s;
    z-index: 10000;
}

.mobile-nav-close:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: rotate(90deg) scale(1.1);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .4s, box-shadow .4s;
}

header.scrolled {
    background: rgba(233, 233, 233, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 153, 51, .4);
    box-shadow: 0 4px 24px rgba(0, 0, 80, .08);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    height: clamp(64px, 8vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logosection {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logosection img {
    width: clamp(44px, 5vw, 54px);
    height: clamp(44px, 5vw, 54px);
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--saffron);
    transition: transform .6s, border-color .3s;
}

.logosection:hover img {
    transform: rotate(360deg);
    border-color: var(--green);
}

.logosection h2 {
    font-family: var(--font-head);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--navy-dk);
    letter-spacing: .5px;
    line-height: 1.2;
}

.navsection ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
}

.navsection ul li a {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 500;
    color: var(--navy-dk);
    position: relative;
    transition: color .3s;
    padding-bottom: 4px;
    white-space: nowrap;
}

.navsection ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-saffron);
    border-radius: 2px;
    transition: width .3s;
}

.navsection ul li a:hover,
.navsection ul li a.active {
    color: var(--saffron);
}

.navsection ul li a:hover::after,
.navsection ul li a.active::after {
    width: 100%;
}

.join-btn {
    padding: clamp(10px, 1.2vw, 13px) clamp(18px, 2.2vw, 28px);
    background: var(--grad-saffron);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.join-btn:hover {
    background: var(--grad-green);
    transform: translateY(-3px);
    border-color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 9999;
    position: relative;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all .35s ease;
}

.hamburger.open span {
    background: #ffffff;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* HERO */
.herosection {
    min-height: 100svh;
    background-color: #F5F7FA;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: clamp(90px, 10vw, 140px) clamp(20px, 6vw, 80px) clamp(60px, 8vw, 80px);
    gap: clamp(30px, 5vw, 60px);
    position: relative;
    overflow: hidden;
}

.blob1 {
    position: absolute;
    width: min(620px, 80vw);
    height: min(620px, 80vw);
    background: radial-gradient(circle, rgba(255, 153, 51, .13) 0%, transparent 70%);
    top: -120px;
    left: -120px;
    border-radius: 50%;
    animation: blobMove 8s ease-in-out infinite;
    pointer-events: none;
}

.blob2 {
    position: absolute;
    width: min(420px, 60vw);
    height: min(420px, 60vw);
    background: radial-gradient(circle, rgba(19, 136, 8, .09) 0%, transparent 70%);
    bottom: -80px;
    right: 28%;
    border-radius: 50%;
    animation: blobMove 11s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(40px, -40px) scale(1.1)
    }

    66% {
        transform: translate(-30px, 30px) scale(.9)
    }
}

.hersection-left {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 28px);
    position: relative;
    z-index: 2;
}

.trustname {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 153, 51, .12);
    border: 1px solid rgba(255, 153, 51, .35);
    padding: 8px 20px;
    border-radius: 50px;
    width: fit-content;
}

.trustname span {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 600;
    color: var(--saffron);
}

.trustname i {
    animation: heartbeat 1.4s ease-in-out infinite;
    color: var(--saffron);
    font-size: 16px;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.2)
    }
}

.slogan h1 {
    font-family: var(--font-head);
    font-size: clamp(34px, 5.5vw, 72px);
    font-weight: 700;
    color: var(--navy-dk);
    line-height: 1.1;
}

.slogan h1 em {
    color: var(--saffron);
    font-style: italic;
}

.trust-description p {
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 1.85;
    color: var(--navy-dk);
    max-width: 560px;
    font-weight: 400;
}

.herosection-buttons {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    flex-wrap: wrap;
}

.donation-btn {
    padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 36px);
    background: var(--grad-saffron);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.donation-btn:hover {
    background: var(--grad-green);
    transform: translateY(-4px);
    border-color: var(--white);
}

.hero-right-btn {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-right-img {
    display: flex;
    align-items: center;
}

.hero-right-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--saffron);
    margin-left: -10px;
    object-fit: cover;
    object-position: top center;
    transition: transform .3s;
}




.hero-right-img img:first-child {
    margin-left: 0;
}

.hero-right-img img:hover {
    transform: scale(1.25) translateY(-4px);
    z-index: 10;
    border-color: var(--green);
}

.hero-donars {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.donars-count {
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700;
    color: var(--saffron);
}

.donars {
    font-size: 13px;
    color: var(--navy-dk);
}

.herosection-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
    transition: transform .5s;
    border: 3px solid rgba(255, 153, 51, .2);
    width: 100%;
}

.hero-img-wrapper:hover {
    transform: scale(1.03) rotate(-1deg);
}

.herosection-right img {
    height: clamp(320px, 45vw, 580px);
    width: 100%;
    object-fit: cover;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(255, 153, 51, .18) 100%);
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 128, .28);
    z-index: 10;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--grad-saffron);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.hero-badge-text strong {
    display: block;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 800;
    color: var(--navy);
}

.hero-badge-text span {
    font-size: 12px;
    color: var(--gray);
}

/* SECTION LABEL */
.section-label {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 14px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 153, 51, .3);
    border-radius: 50px;
    background: rgba(255, 153, 51, .08);
}

.ourmission-h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4.5vw, 58px);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: .5px;
}

.ourmission-h2 em {
    font-style: italic;
    color: var(--saffron);
}

/* MISSION */
.ourmission-section {
    padding: var(--space-xl) clamp(20px, 6vw, 80px);
    background: var(--offwhite);
}

.our-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: start; 
}

.mission-left {
    position: relative;
    align-self: start; 
}

.mission-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 153, 51, .2);
    line-height: 0;
    font-size: 0;
}
.mission-img-wrap img {
    width: 100%;
    height: clamp(300px, 40vw, 450px);
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s;
}

.mission-img-wrap:hover img {
    transform: scale(1.05);
}

.mission-years-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--grad-green);
    color: var(--white);
    border-radius: 20px;
    padding: clamp(16px, 2vw, 24px) clamp(18px, 2.2vw, 28px);
    text-align: center;
    box-shadow: 0 14px 40px rgba(19, 136, 8, .45);
    border: 3px solid rgba(255, 255, 255, .3);
}

.mission-years-badge .num {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
}

.mission-years-badge .lbl {
    font-size: 13px;
    font-weight: 600;
    opacity: .9;
    margin-top: 4px;
}

.mission-right {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 32px);
}

.mission-right h3 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2.5vw, 34px);
    color: var(--navy);
    line-height: 1.25;
}

.mission-right>p {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.85;
    color: var(--gray);
}

.start-help {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--saffron);
    box-shadow: var(--shadow-sm);
}

.start-help h4 {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 600;
    color: var(--navy);
}

.solution p {
    font-size: 15px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.herosection-bottom {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
    flex-wrap: wrap;
}

.explore-btn {
    padding: clamp(12px, 1.3vw, 15px) clamp(22px, 2.8vw, 34px);
    background: var(--grad-navy);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.1vw, 16px);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}

.explore-btn:hover {
    background: var(--grad-green);
    transform: translateY(-4px);
    border-color: var(--white);
}

.explore-btn a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .3s;
}

.call-btn:hover {
    transform: translateX(5px);
}

.call-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 153, 51, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 153, 51, .3);
    transition: all .35s;
    flex-shrink: 0;
}

.call-btn:hover .call-icon-wrap {
    background: var(--green);
    border-color: var(--green);
}

.call-btn:hover .call-icon-wrap i {
    color: var(--white) !important;
}

.call p:first-child {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.call p:last-child {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 700;
    color: var(--navy);
}

/* STATS */
.mission-card {
    background: #e5e5e5;
    padding: clamp(40px, 6vw, 80px) clamp(16px, 4.5vw, 60px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.cardone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: clamp(24px, 3.5vw, 44px) clamp(16px, 2vw, 28px);
    background: #ffffff;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    border: 2px solid rgba(255, 153, 51, .2);
    position: relative;
    overflow: hidden;
}

.cardone::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.cardone:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    border-color: rgba(19, 136, 8, .3);
}

.cardone:hover::before {
    transform: scaleX(1);
}

.cardone-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 153, 51, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    border: 2px solid rgba(255, 153, 51, .2);
}

.cardone:hover .cardone-icon {
    background: var(--green);
    transform: rotate(360deg) scale(1.1);
    border-color: var(--green-lt);
}

.cardone:hover .cardone-icon i {
    color: var(--white) !important;
}

.cardone h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--navy-dk);
}

.cardone p {
    font-size: clamp(13px, 1.2vw, 17px);
    color: var(--navy-dk);
}

/* PROGRAMS */
.programs-section {
    padding: var(--space-xl) clamp(16px, 5vw, 60px);
    background: var(--offwhite);
}

.programs-card-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 30px);
    margin-top: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.program-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: clamp(24px, 3vw, 44px) clamp(20px, 2.8vw, 36px);
    background: #dbdbdb;
    border-radius: 24px;
    cursor: pointer;
    transition: all .4s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 153, 51, .1);
}

.program-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 136, 8, .10), transparent);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
    border-color: rgba(19, 136, 8, .4);
}

.program-card:hover::after {
    opacity: 1;
}

.prog-icon-wrap {
    width: 76px;
    height: 76px;
    background: rgba(255, 153, 51, .12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 153, 51, .2);
}

.program-card:hover .prog-icon-wrap {
    background: var(--green);
    border-radius: 50%;
    transform: scale(1.1) rotate(10deg);
    border-color: var(--green-lt);
}

.program-card:hover .prog-icon-wrap i {
    color: var(--white) !important;
}

.program-card h2 {
    font-family: var(--font-head);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    color: var(--navy-dk);
    position: relative;
    z-index: 1;
}

.program-card p {
    font-size: clamp(13px, 1vw, 14px);
    line-height: 1.8;
    color: #6b7280;
    position: relative;
    z-index: 1;
}

/* ── WAYS TO CONTRIBUTE ── */
.waystocontribute-section {
    /* padding: var(--space-xl) clamp(16px, 5vw, 60px); */
    padding: 20px;
    background: var(--offwhite);
}

.wtc-header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.wtc-subtitle {
    font-size: clamp(14px, 1.2vw, 16px);
    color: var(--gray);
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.7;
}

.wtc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 26px);
    max-width: 1240px;
    margin: 0 auto;
}

.wtc-card {
    background: var(--white);
    border-radius: 24px;
    border: 1.5px solid rgba(255, 153, 51, .15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s, border-color .4s;
    cursor: pointer;
}

.wtc-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 70px rgba(0, 0, 80, .13);
    border-color: rgba(19, 136, 8, .35);
}

.wtc-card-img {
    position: relative;
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.wtc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.wtc-card-img.color-edu    { background: linear-gradient(135deg, rgba(255,153,51,.15), rgba(255,153,51,.06)); }
.wtc-card-img.color-health { background: linear-gradient(135deg, rgba(19,136,8,.12), rgba(19,136,8,.05)); }
.wtc-card-img.color-cancer { background: linear-gradient(135deg, rgba(0,0,128,.1), rgba(0,0,128,.04)); }
.wtc-card-img.color-ration { background: linear-gradient(135deg, rgba(255,153,51,.15), rgba(19,136,8,.08)); }
.wtc-card-img.color-special{ background: linear-gradient(135deg, rgba(0,0,128,.1), rgba(255,153,51,.1)); }
.wtc-card-img.color-meals  { background: linear-gradient(135deg, rgba(19,136,8,.12), rgba(255,153,51,.08)); }

.wtc-icon {
    font-size: 52px;
    transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.wtc-card:hover .wtc-icon {
    transform: scale(1.15) rotate(-6deg);
}

/* .wtc-img-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
} */

.wtc-card:hover .wtc-img-bar {
    transform: scaleX(1);
}

.wtc-card-body {
    padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px) 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.wtc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--saffron);
    background: rgba(255, 153, 51, .09);
    border: 1px solid rgba(255, 153, 51, .2);
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
}

.wtc-card-title {
    font-family: var(--font-head);
    font-size: clamp(17px, 1.6vw, 21px);
    font-weight: 600;
    color: var(--navy-dk);
    line-height: 1.25;
    margin: 0;
}

.wtc-card-desc {
    font-size: clamp(13px, 1vw, 14px);
    line-height: 1.75;
    color: var(--gray);
    margin: 0;
    flex: 1;
}

.wtc-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(18px, 2vw, 26px) 20px;
    border-top: 1px solid rgba(0, 0, 80, .06);
    gap: 12px;
}

.wtc-amount { display: flex; flex-direction: column; gap: 2px; }

.wtc-amount-label {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.wtc-amount-value {
    font-family: var(--font-body);
    font-size: clamp(20px, 3vw, 16px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}

.wtc-amount-per {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

.wtc-donate-btn {
    padding: 10px 18px;
    background: var(--grad-saffron);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: background .3s, transform .3s, box-shadow .3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.wtc-donate-btn:hover {
    background: var(--grad-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 136, 8, .3);
}

/* BOTTOM BANNER */
.wtc-bottom-banner {
    max-width: 1240px;
    margin: clamp(36px, 4vw, 56px) auto 0;
    background: var(--grad-navy);
    border-radius: 24px;
    padding: clamp(30px, 4vw, 48px) clamp(24px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.wtc-bottom-banner::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 153, 51, .18) 0%, transparent 70%);
    top: -90px; right: -60px;
    border-radius: 50%;
    pointer-events: none;
}

.wtc-banner-left { position: relative; z-index: 1; }

.wtc-banner-left h3 {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.2;
}

.wtc-banner-left h3 em { color: var(--saffron); font-style: italic; }

.wtc-banner-left p {
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255, 255, 255, .65);
    margin: 0;
    max-width: 440px;
    line-height: 1.65;
}

.wtc-banner-right {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.wtc-banner-btn {
    padding: 13px 26px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 700;
    cursor: pointer;
    transition: all .35s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wtc-banner-btn.primary {
    background: var(--grad-saffron);
    color: var(--white);
    border: 2px solid transparent;
}

.wtc-banner-btn.primary:hover {
    background: var(--grad-green);
    transform: translateY(-3px);
}

.wtc-banner-btn.outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .3);
}

.wtc-banner-btn.outline:hover {
    border-color: var(--saffron);
    color: var(--saffron);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .wtc-grid { grid-template-columns: repeat(2, 1fr); }
    .wtc-bottom-banner { flex-direction: column; text-align: center; }
    .wtc-banner-right { justify-content: center; }
}

@media (max-width: 600px) {
    .wtc-grid { grid-template-columns: 1fr; }
    .wtc-banner-right { flex-direction: column; width: 100%; }
    .wtc-banner-btn { justify-content: center; }
}

/* VOLUNTEER */
.volunteer-section {
    padding: var(--space-xl) clamp(16px, 5vw, 60px);
    background: var(--light-gray);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 30px);
}

.volunteerone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: clamp(30px, 4vw, 50px) clamp(16px, 2vw, 28px);
    background: var(--offwhite);
    border: 2px solid rgba(255, 153, 51, .2);
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.volunteerone::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--grad-green);
    transition: height .5s;
    z-index: 0;
}

.volunteerone:hover {
    border-color: var(--green);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 24px 60px rgba(19, 136, 8, .2);
}

.volunteerone:hover::before {
    height: 100%;
}

.vol-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 153, 51, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s, background .4s;
    border: 2px solid rgba(255, 153, 51, .2);
    position: relative;
    z-index: 1;
}

.volunteerone:hover .vol-icon {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .4);
}

.volunteerone:hover .vol-icon i {
    color: var(--white) !important;
}
.volunteerone h3{
    font-size: 25px;
}
.volunteerone h4 {
    font-family: var(--font-head);
    font-size: clamp(32px, 4vw, 30px);
    color: var(--navy);
    transition: color .4s;
    position: relative;
    z-index: 1;
}

.volunteerone h5 {
    font-size: clamp(13px, 1.1vw, 14px);
    font-weight: 500;
    color: var(--gray);
    transition: color .4s;
    position: relative;
    z-index: 1;
}

.volunteerone:hover h4,
.volunteerone:hover h5,
.volunteerone:hover h3 {
    color: var(--white);
    z-index: 999;
}

/* FOOTER */
footer {
    background: var(--light-gray);
}

.footer-bg {
    padding: clamp(40px, 5vw, 60px) clamp(16px, 5vw, 80px) 0;
}

.footer-top {
    background-color: var(--saffron-dk);
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: clamp(32px, 4vw, 50px) clamp(20px, 4vw, 60px);
    position: relative;
    top: 75px;
    box-shadow: 0 20px 60px rgba(255, 153, 51, .35);
    overflow: hidden;
}

/* .footer-top::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-green);
} */

.address {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--white);
}

.address-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    border: 1px solid rgba(255, 255, 255, .3);
}

.address:hover .address-icon {
    background: rgba(255, 255, 255, .35);
    transform: scale(1.1) rotate(8deg);
}

.address-right p:first-child {
    font-size: 11px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    opacity: .8;
}

.address-right p:last-child {
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 500;
    letter-spacing: .8px;
}

.main-footer {
    background: var(--navy-dk);
    color: var(--white);
    padding: clamp(100px, 9vw, 120px) clamp(16px, 5vw, 80px) clamp(40px, 4vw, 60px);
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: clamp(30px, 4.5vw, 60px);
    border-top: 1px solid rgba(255, 153, 51, .15);
}

.main-footer-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-footer-left h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    color: var(--saffron);
    letter-spacing: .5px;
}

.main-footer-left h3 {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.3vw, 18px);
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
    max-width: 334px;
    line-height: 1.7;
    font-style: italic;
}

.social-media-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s;
    cursor: pointer;
}

.social-icon-link:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-5px) rotate(-5deg);
}

.social-icon-link:hover i {
    color: var(--white) !important;
}

.main-footer-middle h3,
.main-footer-right h3 {
    font-family: var(--font-head);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
    color: var(--saffron);
    letter-spacing: .5px;
}

.main-footer-middle h3::after,
.main-footer-right h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--grad-green);
    border-radius: 2px;
}

.main-footer-middle ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.main-footer-middle ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.2vw, 16px);
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    transition: all .3s;
}

.main-footer-middle ul li:hover {
    color: var(--green-lt);
    transform: translateX(6px);
}

.main-footer-middle ul li i {
    color: var(--saffron);
    font-size: 14px;
}

.main-footer-middle ul li:hover i {
    color: var(--green);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    transition: color .3s;
}

.info a {
    word-break: break-all;
    overflow-wrap: break-word;
    min-width: 0;
}

.address-right a,
.address-right p {
    word-break: break-word;
    overflow-wrap: break-word;
}

.info:hover {
    color: var(--white);
}

.info i {
    color: var(--saffron);
    width: 20px;
    flex-shrink: 0;
}

.info:hover i {
    color: var(--green-lt);
}

.copyrights {
    background: var(--saffron-dk);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.copyrights-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px clamp(16px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
}

/* WHATSAPP */
/* WHATSAPP WRAPPER — pointer-events fix */
.wa-wrapper {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;                  /* FIX 1: was 900, too low */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none !important;
    /* FIX 2: REMOVED overflow:hidden — it was clipping popup & ring animation */
    width: 58px;                    /* FIX 3: constrain wrapper to float btn size */
    height: 58px;
}

.wa-popup {
    position: absolute;             /* FIX 4: removes from flow so wrapper stays 58×58 */
    bottom: 70px;                   /* sits just above the float button */
    right: 0;
    pointer-events: none;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 2px 10px rgba(0,0,0,.08);
    width: clamp(270px, 80vw, 320px);
    overflow: hidden;
    transform: translateY(20px) scale(0.92);
    opacity: 0;
    visibility: hidden;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .35s ease, visibility .4s;
    transform-origin: bottom right;
}

.wa-popup.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;            /* FIX 5: was MISSING — popup never showed! */
    pointer-events: auto;
}

.wa-popup-header {
    background: #25D366;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.wa-popup-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.5);
    font-size: 20px;
    color: #fff;
}

.wa-popup-info { flex: 1; }

.wa-popup-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.wa-popup-info span {
    font-size: 11px;
    color: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-online-dot {
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: wa-pulse 1.8s infinite;
}

@keyframes wa-pulse {
    0%,100% { opacity:1; transform:scale(1) }
    50%      { opacity:.5; transform:scale(.7) }
}

.wa-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255,255,255,.8);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .2s;
    pointer-events: auto !important;
}

.wa-popup-close:hover { color: #fff; }

.wa-popup-body {
    padding: 16px 18px 18px;
    background: #e5ddd5;
}

.wa-chat-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 10px 14px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #303030;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
    position: relative;
    max-width: 90%;
    animation: wa-bubble-in .5s ease .15s both;
}

@keyframes wa-bubble-in {
    from { opacity:0; transform:translateY(8px) }
    to   { opacity:1; transform:translateY(0) }
}

.wa-chat-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border: 8px solid transparent;
    border-top-color: #fff;
    border-left: 0;
}

.wa-chat-time {
    font-size: 10px;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.wa-popup-cta {
    padding: 12px 18px 16px;
    background: #fff;
}

.wa-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background .3s, transform .25s;
    letter-spacing: .3px;
    pointer-events: auto !important;
}

.wa-popup-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.wa-popup-btn i { font-size: 16px; }

.wa-float-btn {
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
    cursor: pointer;
    border: none;
    transition: transform .3s, background .3s, box-shadow .3s;
    position: relative;
    text-decoration: none;
    pointer-events: auto !important;
}

.wa-float-btn:hover {
    background: #1ebe5d;
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.wa-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(37,211,102,.5);
    animation: wa-ring 2.2s ease-out infinite;
    pointer-events: none !important;
}

@keyframes wa-ring {
    0%   { transform:scale(1);    opacity:.8 }
    100% { transform:scale(1.55); opacity:0  }
}

.wa-notif-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #FF4444;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: wa-notif-bounce .6s ease infinite alternate;
    pointer-events: none;
}

@keyframes wa-notif-bounce {
    from { transform:scale(1)   }
    to   { transform:scale(1.2) }
}

.wa-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #303030;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 14px;
    border-radius: 8px;
    pointer-events: none !important;
    opacity: 0;
    transition: opacity .25s, transform .25s;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #303030;
    border-right: 0;
}

.wa-float-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .wa-wrapper  { right: 14px; bottom: 18px; width: 52px; height: 52px; }
    .wa-float-btn { width: 52px; height: 52px; font-size: 26px; }
    .wa-popup    { width: min(300px, calc(100vw - 28px)); bottom: 64px; }
}

@media (max-width: 480px) {
    .wa-wrapper  { right: 12px; bottom: 16px; width: 50px; height: 50px; }
    .wa-float-btn { width: 50px; height: 50px; font-size: 22px; }
    .wa-popup    { bottom: 62px; }

    .herosection {
        overflow: hidden;
        max-width: 100vw;
    }
    .herosection-right {
        overflow: hidden !important;
        max-width: 100% !important;
    }
    .hero-carousel {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .hero-carousel-track {
        overflow: visible;
    }
}
































/* RESPONSIVE */
@media (max-width:1200px) {
    .herosection {
        padding: clamp(90px, 9vw, 120px) clamp(20px, 4vw, 48px) clamp(60px, 6vw, 80px);
    }

    .navsection ul {
        gap: 20px;
    }

    .logosection h2 {
        font-size: 16px;
    }
}

@media (max-width:1024px) {
    .herosection {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hersection-left {
        align-items: center;
    }

    .trust-description p {
        margin: 0 auto;
    }

    .herosection-right {
        display: none;
    }

    .our-mission {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .programs-card-section {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .mission-years-badge {
        right: 10px;
    }

    .hero-badge {
        left: 10px;
    }
}

@media (max-width:768px) {
    .navbar {
        padding: 0 clamp(16px, 4vw, 24px);
    }

    .navsection,
    .join-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logosection h2 {
        font-size: clamp(12px, 3.5vw, 16px);
    }

    .mission-card {
        grid-template-columns: 1fr;
    }

    .programs-card-section {
        grid-template-columns: 1fr;
    }

    .volunteer-section {
        grid-template-columns: 1fr;
    }

    .footer-top {
        padding: 32px 24px;
        top: 125px;
    }

    .main-footer {
        grid-template-columns: 1fr;
        padding-top: 150px;
    }

    .mission-years-badge {
        position: static;
        margin-top: -20px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        border-radius: 50px;
    }

    .mission-years-badge .num {
        font-size: 28px;
    }

    .herosection-buttons {
        justify-content: center;
    }

    .herosection-bottom {
        justify-content: center;
    }

    .our-mission {
        text-align: center;
    }

    .start-help {
        justify-content: center;
    }

    .solution p {
        justify-content: center;
    }

    .wa-wrapper {
        right: 14px;
        bottom: 18px;
    }

    .wa-float-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .wa-popup {
        width: min(300px, calc(100vw - 28px));
    }

    #back-to-top {
        right: 18px;
        bottom: 90px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width:480px) {
    .slogan h1 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero-right-btn {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 16px;
    }

    .address {
        gap: 12px;
    }

    .address-icon {
        width: 46px;
        height: 46px;
    }

    .copyrights-section {
        text-align: center;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .cardone {
        padding: 28px 16px;
    }

    .volunteer-section {
        padding: clamp(40px, 6vw, 80px) clamp(12px, 4vw, 24px);
    }

    .wa-wrapper {
        right: 12px;
        bottom: 16px;
    }

    .wa-float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    #back-to-top {
        width: 42px;
        height: 42px;
        right: 14px;
        bottom: 80px;
    }
}

@media print {

    header,
    footer,
    .wa-wrapper,
    #back-to-top,
    .mobile-nav,
    .blob1,
    .blob2 {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
    }

    .herosection {
        padding-top: 20px;
    }
}

@media (max-height:500px) and (orientation:landscape) {
    .herosection {
        min-height: auto;
        padding-top: 80px;
    }

    .mobile-nav a {
        font-size: 24px;
    }

    .mobile-nav {
        gap: 20px;
    }
}










/* ============================================================
   HERO CAROUSEL — ADD THIS TO YOUR index.css
   Replace the existing .hero-img-wrapper and .herosection-right
   styles with these
   ============================================================ */

.herosection-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CAROUSEL WRAPPER */
.hero-carousel {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .35);
    border: 3px solid rgba(255, 153, 51, .2);
    height: clamp(320px, 45vw, 580px);
}

/* SLIDES TRACK */
.hero-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

/* EACH SLIDE */
.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

/* Ken Burns subtle zoom on active slide */
.hero-slide.active img {
    transform: scale(1.05);
}

/* Gradient overlay on each slide */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(255, 153, 51, .22) 100%);
    pointer-events: none;
}

/* PREV / NEXT ARROWS */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .92);
    border: 2px solid rgba(255, 153, 51, .3);
    border-radius: 50%;
    color: var(--navy-dk);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all .3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-carousel-btn:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn.prev { left: 14px; }
.hero-carousel-btn.next { right: 14px; }

/* DOT INDICATORS */
.hero-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .35s;
}

.hero-dot.active {
    background: var(--saffron);
    width: 24px;
    border-radius: 4px;
}

/* HERO BADGE — sits over carousel */
.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 128, .28);
    z-index: 10;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--grad-saffron);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.hero-badge-text strong {
    display: block;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 800;
    color: var(--navy);
}

.hero-badge-text span {
    font-size: 12px;
    color: var(--gray);
}

/* SLIDE COUNTER BADGE (top-right) */
.hero-carousel-counter {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 10;
    backdrop-filter: blur(6px);
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .herosection-right {
        display: flex; /* override the display:none from previous */
    }

    .hero-carousel {
        height: clamp(260px, 50vw, 420px);
    }

    .hero-badge {
        left: 10px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 300px;
        border-radius: 20px;
    }

    .hero-carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .hero-badge {
        left: 8px;
        bottom: 14px;
        padding: 10px 14px;
        gap: 10px;
    }
}


/* ── HERO ENTRANCE ANIMATIONS ── */
/* Elements start hidden */
.trustname,
.slogan h1,
.trust-description,
.herosection-buttons,
.herosection-right {
  opacity: 0;
  transform: translateY(30px);
}

/* Trigger animations when pageContent becomes visible */
#pageContent.visible .trustname {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
#pageContent.visible .slogan h1 {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
#pageContent.visible .trust-description {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}
#pageContent.visible .herosection-buttons {
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}
#pageContent.visible .herosection-right {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

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

/* Reduced motion — show immediately */
@media (prefers-reduced-motion: reduce) {
  .trustname,
  .slogan h1,
  .trust-description,
  .herosection-buttons,
  .herosection-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
/* Safety — if GSAP never loads, show content after 4s */
.no-gsap .trustname,
.no-gsap .slogan h1,
.no-gsap .trust-description,
.no-gsap .herosection-buttons {
  opacity: 1 !important;
  transform: none !important;
}