/*
Theme Name: Change Foundation
Author: VR Panghal
Version: 1.2
*/

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    background: #f4f7fb;
    color: #333;
}

a { text-decoration: none; }

h1,h2,h3 {
    color: #0b3c5d;
}

/* HEADER */
header {
    background: #0b3c5d;
    padding: 18px 30px;
}
header h1 {
    color: #fff;
    margin: 0;
}

/* FOOTER */
footer {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

/* BUTTONS */
.btn, .btn-small {
    background: #1abc9c;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
}
.btn:hover { background: #159a80; }

/* HERO */
.hero {
    background: linear-gradient(rgba(11,60,93,.85),rgba(11,60,93,.85));
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}
.hero h1 { font-size: 42px; color:#fff; }
.hero p { color:#ddd; }

/* CAMPAIGNS */
.home-campaigns {
    background: #fff;
    padding: 60px 20px;
}
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
}
.campaign-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    padding: 15px;
}
.campaign-box img {
    width: 100%;
    border-radius: 8px;
}
.goal {
    color: #1abc9c;
    font-weight: bold;
}

/* PAGES */
.page-box, .legal-page, .donate-page {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* DONATE */
.donate-box {
    background: #f7fafc;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}
.donate-box img {
    max-width: 220px;
    display: block;
    margin: 15px auto;
}

/* MOBILE */
@media(max-width:768px){
    .hero h1 { font-size: 30px; }
}

/* ===== HEADER + MENU ===== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5eaf0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    max-height: 55px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #0b3c5d;
    font-weight: 600;
    font-size: 15px;
}

.main-nav a:hover {
    color: #1abc9c;
}

.header-donate .btn {
    padding: 10px 18px;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #0b3c5d;
}

.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 20px;
}

.mobile-nav li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    font-weight: 600;
    color: #0b3c5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* ===== ACTION PLAN ===== */
.action-plan {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.action-card {
    background: #f4f7fb;
    padding: 30px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: 0.3s;
}

.action-card:hover {
    background: #1abc9c;
    color: #fff;
    transform: translateY(-6px);
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    background: #f4f7fb;
    padding: 60px 20px;
}

.founder-box {
    max-width: 1000px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.founder-box img {
    width: 220px;
    border-radius: 14px;
}

.founder-content h2 {
    color: #1abc9c;
    margin-bottom: 5px;
}

.founder-content h3 {
    margin-top: 0;
}

.qualification {
    font-weight: 600;
    color: #555;
}

/* MOBILE */
@media(max-width:768px){
    .founder-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== VOLUNTEER FORM ===== */
form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

form textarea {
    min-height: 120px;
}

table th, table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
table th {
    color: #0b3c5d;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero .btn {
    margin: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.home-about,
.home-work,
.home-founder {
    background: #fff;
}

.home-campaigns {
    background: #f4f7fb;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.work-card {
    background: #f4f7fb;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.campaign-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.goal {
    color: #1abc9c;
    font-weight: bold;
}

.home-cta {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
}

/* ================= HERO PREMIUM ================= */

.hero-premium {
    background: linear-gradient(
        rgba(11,60,93,0.9),
        rgba(11,60,93,0.9)
    );
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-buttons .btn {
    margin-right: 12px;
    margin-bottom: 10px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(255,255,255,0.12);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.stat-box strong {
    display: block;
    font-size: 28px;
    color: #1abc9c;
}

.stat-box span {
    font-size: 14px;
    opacity: 0.9;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .container {
        padding: 30px 15px;
    }
}


h1, h2 {
    letter-spacing: -0.5px;
}

h2 {
    margin-bottom: 15px;
}

section {
    padding: 20px 0;
}

/* ================= ADVANCED CAMPAIGN CARD ================= */

.campaign-box.advanced {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: 0.3s;
}

.campaign-box.advanced:hover {
    transform: translateY(-6px);
}

.progress-wrap {
    margin: 15px 0;
}

.progress-bar {
    background: #e6edf3;
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #1abc9c, #0b3c5d);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 6px;
    color: #555;
}

.goal-text {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ================= FOUNDER SECTION ================= */

.home-founder {
    background: #ffffff;
}

.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    background: #f9fbfd;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.founder-image img {
    width: 100%;
    border-radius: 14px;
}

.founder-content h2 {
    margin-bottom: 15px;
}

.founder-message {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.founder-name span {
    color: #666;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image img {
        max-width: 220px;
        margin: 0 auto;
    }
}

/* ================= TESTIMONIALS ================= */

.home-testimonials {
    background: #f4f7fb;
    text-align: center;
}

.home-testimonials h2 {
    margin-bottom: 35px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-card strong {
    display: block;
    margin-top: 15px;
    color: #0b3c5d;
}

/* ================= SINGLE CAMPAIGN PAGE ================= */

.campaign-single {
    background: #f4f7fb;
}

.campaign-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.campaign-content img {
    border-radius: 14px;
    margin: 20px 0;
}

.campaign-text {
    line-height: 1.8;
    font-size: 16px;
}

.campaign-donate-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.1);
    position: sticky;
    top: 100px;
}

.campaign-donate-box h3 {
    margin-bottom: 15px;
}

.donate-btn {
    display: block;
    text-align: center;
    margin: 20px 0;
}

.donate-note {
    font-size: 14px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .campaign-layout {
        grid-template-columns: 1fr;
    }

    .campaign-donate-box {
        position: static;
    }
}

/* ================= VOLUNTEER PAGE ================= */

.volunteer-hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #fff;
    text-align: center;
}

.volunteer-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.volunteer-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.volunteer-why {
    background: #ffffff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-card {
    background: #f4f7fb;
    padding: 30px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.volunteer-form-section {
    background: #f4f7fb;
}

.volunteer-form-card {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.volunteer-form-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.volunteer-form-card input,
.volunteer-form-card select,
.volunteer-form-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.volunteer-form-card textarea {
    min-height: 120px;
}

.form-success {
    background: #e6fff6;
    color: #0b6b4f;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .volunteer-hero h1 {
        font-size: 30px;
    }
}

/* ===== DONATE PAGE LAYOUT FIX ===== */

.donate-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* LEFT WIDE, RIGHT CARD */
    gap: 50px;
    align-items: start;
}

/* LEFT */
.donate-left input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.donate-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* RIGHT CARD */
.donate-right {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.upi-qr {
    max-width: 220px;
    margin: 15px auto;
}

.upi-copy {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.upi-copy span {
    background: #f4f7fb;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.upi-copy button {
    background: #1abc9c;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.form-success {
    background: #e6fff6;
    color: #0b6b4f;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .donate-layout {
        grid-template-columns: 1fr;
    }
}

.form-success {
    background: #e6fff6;
    color: #0b6b4f;
    padding: 18px;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 15px;
}


/* ================= FOUNDER DASHBOARD ================= */

.founder-dashboard {
    background: #f4f7fb;
}

.fd-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.fd-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.fd-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: 0.3s;
}

.fd-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.fd-card span {
    font-size: 14px;
    color: #666;
}

.fd-card:hover {
    transform: translateY(-6px);
}

.fd-card.logout {
    background: #ffecec;
}

/* ================= LEGAL PAGE ================= */

.legal-page {
    background: #f4f7fb;
}

.legal-intro {
    font-size: 17px;
    margin-bottom: 30px;
    color: #444;
}

.legal-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.legal-card h2 {
    margin-bottom: 15px;
}

.legal-card ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.legal-note {
    background: #e6fff6;
    padding: 20px;
    border-radius: 12px;
    color: #0b6b4f;
}

/* ================= CONTACT PAGE ================= */

.contact-hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-trust {
    margin-top: 20px;
    font-size: 14px;
    color: #0b6b4f;
}

.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form-card textarea {
    min-height: 120px;
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 30px;
    }
}

/* ================= IMPACT & TRUST SECTION ================= */

.home-impact {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #ffffff;
    text-align: center;
}

.home-impact h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.impact-tagline {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.impact-card {
    background: rgba(255,255,255,0.12);
    padding: 30px 20px;
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.impact-card strong {
    display: block;
    font-size: 34px;
    color: #1abc9c;
}

.impact-card span {
    font-size: 14px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 30px;
}

.trust-badges span {
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 20px;
}

.impact-cta .btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
    .home-impact h2 {
        font-size: 28px;
    }
}

/* ================= UPGRADED CTA SECTION ================= */

.home-cta-upgraded {
    background: linear-gradient(135deg, #1abc9c, #0b3c5d);
    padding: 80px 0;
    color: #fff;
}

.cta-box {
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-cta-primary {
    background: #ffffff;
    color: #0b3c5d;
    padding: 16px 34px;
    font-size: 18px;
    border-radius: 40px;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 16px 34px;
    font-size: 18px;
    border-radius: 40px;
}

.btn-cta-primary:hover {
    background: #f4f7fb;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
}

.cta-trust {
    font-size: 14px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-text h2 {
        font-size: 28px;
    }

    .cta-text p {
        font-size: 16px;
    }
}

/* ================= ABOUT US PAGE ================= */

.about-hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
}

.about-content {
    background: #f4f7fb;
}

.about-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.about-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.about-cta {
    margin-top: 50px;
    text-align: center;
}

/* ================= PRIVACY POLICY PAGE ================= */

.privacy-hero {
    background: linear-gradient(135deg, #1abc9c, #0b3c5d);
    color: #fff;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 40px;
}

.privacy-content {
    background: #f4f7fb;
}

.privacy-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.privacy-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.privacy-section ul li {
    margin-bottom: 8px;
}

.privacy-note {
    background: #e6fff6;
    padding: 20px;
    border-radius: 12px;
    color: #0b6b4f;
}

/* ================= FOOTER ================= */

.site-footer {
    background: #0b3c5d;
    color: #ffffff;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 20px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.trust-list li {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-bottom {
    background: #08304a;
    padding: 15px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================= TERMS & CONDITIONS PAGE ================= */

.terms-hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #ffffff;
    text-align: center;
}

.terms-hero h1 {
    font-size: 40px;
}

.terms-content {
    background: #f4f7fb;
}

.terms-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.terms-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.terms-section h2 {
    margin-bottom: 10px;
}

.terms-note {
    background: #e6fff6;
    padding: 20px;
    border-radius: 12px;
    color: #0b6b4f;
}

/* ===== STICKY DONATE BUTTON ===== */
.sticky-donate-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #e63946;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
    z-index: 9999;
    animation: pulseDonate 2s infinite;
}

@keyframes pulseDonate {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ===== FOUNDER DONATION PANEL ===== */

.founder-panel h1 {
    margin-bottom: 25px;
}

.donation-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.donation-table th,
.donation-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.donation-table th {
    background: #f4f7fb;
    font-weight: 600;
}

.btn-small {
    background: #1abc9c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
}

.fd-analytics {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.fd-stat {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    text-align: center;
}

.fd-stat h3 {
    margin: 0;
    font-size: 26px;
    color: #1abc9c;
}

.fd-chart-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 40px;
}

.campaign-progress {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #1abc9c;
    transition: width .4s ease;
}

.campaign-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.campaign-donate-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    position: sticky;
    top: 100px;
}

.progress-bar {
    width: 100%;
    height: 16px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,#1abc9c,#16a085);
    transition: width .5s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.goal-text {
    margin-top: 10px;
    font-size: 15px;
}

@media(max-width:768px){
    .campaign-layout{
        grid-template-columns: 1fr;
    }
}

.campaign-leaderboard {
    margin-top: 25px;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.campaign-leaderboard ol {
    padding-left:18px;
}

.donation-wall {
    background:#f9fbfc;
    padding:60px 0;
}
.wall-box {
    display:grid;
    gap:15px;
}
.wall-item {
    background:#fff;
    padding:15px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
}
.wall-item span {
    float:right;
    font-size:12px;
    color:#777;
}

.upi-box, .csr-box {
    margin-top:25px;
    padding:25px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.upi-box img {
    border-radius:10px;
}

.donate-hero {
    background: linear-gradient(135deg,#0b3c5d,#1abc9c);
    color:#fff;
    padding:80px 0;
    text-align:center;
}

.impact-stats {
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:30px;
}

.impact-stats div strong {
    font-size:28px;
    display:block;
}

.donate-layout {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:80px 0;
}

.donate-left form input {
    width:100%;
    margin-bottom:15px;
    padding:12px;
    border-radius:8px;
    border:1px solid #ddd;
}

.payment-box, .trust-box {
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.btn {
    background:#1abc9c;
    color:#fff;
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.secondary-btn {
    background:#0b3c5d;
}

.small-btn {
    padding:8px 15px;
    font-size:14px;
}

@media(max-width:768px){
    .donate-layout {
        grid-template-columns:1fr;
    }
}

.donate-hero {
    background: linear-gradient(135deg,#0b3c5d,#1abc9c);
    color:#fff;
    padding:100px 0;
    text-align:center;
}

.hero-subtext {
    max-width:700px;
    margin:20px auto 40px;
    font-size:18px;
}

.impact-stats {
    display:flex;
    justify-content:center;
    gap:50px;
    margin-bottom:40px;
}

.trust-section {
    background: rgba(255,255,255,.12);
    padding:30px;
    border-radius:16px;
    max-width:700px;
    margin:0 auto;
}

.donate-layout {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:80px 0;
}

.donate-left input {
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ddd;
}

.payment-box {
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.btn {
    background:#1abc9c;
    color:#fff;
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.secondary-btn {
    background:#0b3c5d;
}

.small-btn {
    padding:8px 15px;
    font-size:14px;
}

@media(max-width:768px){
    .donate-layout {
        grid-template-columns:1fr;
    }
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero .btn {
    margin: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.home-about,
.home-work,
.home-founder {
    background: #fff;
}

.home-campaigns {
    background: #f4f7fb;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.work-card {
    background: #f4f7fb;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.campaign-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.goal {
    color: #1abc9c;
    font-weight: bold;
}

.home-cta {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.hero {
    background: linear-gradient(135deg, #0b3c5d, #1abc9c);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero .btn {
    margin: 10px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.home-about,
.home-work,
.home-founder {
    background: #fff;
}

.home-campaigns {
    background: #f4f7fb;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.work-card {
    background: #f4f7fb;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.campaign-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.goal {
    color: #1abc9c;
    font-weight: bold;
}

.home-cta {
    background: #0b3c5d;
    color: #fff;
    text-align: center;
}

/* ================= HERO PREMIUM ================= */

.hero-premium {
    background: linear-gradient(
        rgba(11,60,93,0.9),
        rgba(11,60,93,0.9)
    );
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-buttons .btn {
    margin-right: 12px;
    margin-bottom: 10px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(255,255,255,0.12);
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.stat-box strong {
    display: block;
    font-size: 28px;
    color: #1abc9c;
}

.stat-box span {
    font-size: 14px;
    opacity: 0.9;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .container {
        padding: 30px 15px;
    }
}

h1, h2 {
    letter-spacing: -0.5px;
}

h2 {
    margin-bottom: 15px;
}

section {
    padding: 20px 0;
}


.donate-hero{
    background:linear-gradient(135deg,#0b3c5d,#1abc9c);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.donate-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:70px 0;
}

.donate-left input{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

.payment-box{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.qr-img{
    width:200px;
    margin:15px 0;
}

.bank-box{
    text-align:left;
    margin:20px 0;
}

.btn{
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    display:inline-block;
}

.primary-btn{
    background:#1abc9c;
    color:#fff;
}

.secondary-btn{
    background:#0b3c5d;
    color:#fff;
}

.success-box{
    background:#eafaf5;
    border:1px solid #1abc9c;
}

.success-badge{
    margin-top:15px;
    color:#27ae60;
}

.info-text{
    margin-top:15px;
    font-size:14px;
    color:#555;
}

@media(max-width:768px){
    .donate-layout{
        grid-template-columns:1fr;
    }
}

.hero-center{
    max-width:800px;
    margin:0 auto;
}

.hero-subtext{
    margin-top:20px;
    font-size:18px;
    line-height:1.6;
    opacity:0.95;
}
