/* ===========join-mission=================  */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --bg-cream: #fdfaf0;
    --lime-text: #c0ca33;
    --brown-text: #8d6e63;
    --text-dark: #333;
    --text-muted: #666;
}

.join-mission {
    background-color: var(--bg-cream);
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Headers */
.mission-title {
    color: var(--lime-text);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.mission-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    color: var(--text-dark);
}

.mission-subheading {
    color: var(--brown-text);
    font-size: 2rem;
    font-family: 'Playfair Display', serif; /* Elegant serif to match reference */
    margin-bottom: 40px;
}

/* Card Grid */
.contributor-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Individual Cards */
.contributor-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-title .icon {
    color: var(--brown-text);
    font-size: 1.2rem;
    font-weight: bold;
}

.card-title h3 {
    font-size: 1.3rem;
    color: var(--brown-text);
    margin: 0;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Detail Sections */
.detail-section {
    margin-bottom: 20px;
}

.detail-section h4 {
    color: var(--brown-text);
    font-size: 1rem;
    margin-bottom: 10px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #10b981; /* Green check */
    font-weight: bold;
}

.skills-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Commitment Pills */
.pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.pill-green { background-color: #d1fae5; color: #065f46; }
.pill-blue { background-color: #dbeafe; color: #1e40af; }
.pill-red { background-color: #fee2e2; color: #b91c1c; }

/* Responsive */
@media (max-width: 768px) {
    .mission-title { font-size: 1.8rem; }
    .contributor-grid { grid-template-columns: 1fr; }
}

/* ======================Bank Detail======================== */

:root {
    --bg-cream: #fdfaf0;
    --accent-orange: #d97706;
    --paypal-blue: #2563eb;
    --text-dark: #334155;
    --text-muted: #64748b;
}

.donations-section {
    background-color: var(--bg-cream);
    padding: 20px 20px;
    font-family: 'Inter', sans-serif;
}

.container-donations {
    max-width: 1000px;
    margin: 0 auto;
}

.donations-main-title {
    text-align: center;
    color: var(--accent-orange);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Grid Layout */
.donations-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
    gap: 30px;
}
.donations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Card Styling */
.donation-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.currency-icon {
    font-size: 1.5rem;
    color: #10b981; /* Green for USD */
}

.orange-icon {
    color: var(--accent-orange); /* Orange for INR */
}

.card-header h3 {
    font-size: 1.35rem;
    color: #065f46;
    margin: 0;
}

.donation-card:last-child .card-header h3 {
    color: #92400e;
}

/* Method Groups */
.method-group {
    margin-bottom: 25px;
}

.method-group h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

/* PayPal Button */
.paypal-btn {
    display: inline-block;
    background-color: var(--paypal-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s;
}

.paypal-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Bank Details List */
.bank-details {
    list-style: none;
    padding: 0;
}

.bank-details li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.bank-details strong {
    color: var(--text-dark);
}

/* Info Alert Box */
.info-alert {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: auto;
}

.info-icon {
    color: #3b82f6;
    font-weight: bold;
}

.info-alert p {
    font-size: 0.85rem;
    color: #1e40af;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Scaling */
@media (max-width: 850px) {
    .donations-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================Support Info Section======================== */

:root {
    --bg-cream: #fdfaf0;
    --text-dark: #334155;
    --accent-gold: #d97706;
    --accent-teal: #0d9488;
}

.support-info {
    background-color: var(--bg-cream);
    padding: 20px 20px 40px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.container-support {
    max-width: 900px;
    margin: 0 auto;
}

/* Base Card Styling */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid transparent;
}

.gold-border { border-color: #fde68a; }
.teal-border { border-color: #99f6e4; background-color: #f0fdfa; }
.orange-border { border-color: #fed7aa; }

.card-icon { font-size: 2rem; margin-bottom: 15px; }
.card-icon.small { font-size: 1.5rem; }

h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; color: var(--accent-gold); }
.teal-text { color: var(--accent-teal); }
.orange-text { color: #c2410c; }

/* Checklist Grids */
.impact-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 20px;
    margin-top: 25px;
}

.impact-checklist ul, .steps-list {
    list-style: none;
    padding: 0;
}

.impact-checklist li, .steps-list li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

/* Contact Badge */
.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    color: #b45309;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.2s;
}

.email-badge:hover { background: #fffbeb; }

/* Final Footer Sign-off */
.final-signoff {
    margin-top: 80px;
    padding-bottom: 40px;
}

.footer-title {
    color: var(--accent-gold);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.motto {
    font-weight: 700;
    font-size: 1.2rem;
    color: #92400e;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .impact-checklist { grid-template-columns: 1fr; }
    .info-card { padding: 25px; }
}