@charset "utf-8";
/* CSS Document */

/* General Reset & Font Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f9fafb;
    color: #1f2937;
    line-height: 1.5;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #0d9488;
    text-decoration: none;
}

.tagline {
    font-size: 11px;
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 3px 8px;
    border-radius: 4px;
    /*margin-left: 12px;*/
}

.nav-links {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0d9488;
}

/* Top Emergency Banner */
.alert-banner {
    background-color: #fef2f2;
    color: #dc2626;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #fee2e2;
}
.alert-banner a{
    color: #dc2626;
	text-decoration:none;
}
/* Main Layout Grid */
.main-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 24px 16px;
}

.campaign-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
#about p
{
	text-align:justify;
}
@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Left Column Styling */
/* Hero Image Box Styling */
.hero-image-box {
    position: relative;
    border-radius: 12px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text ko bottom par push karta hai */
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-no-repeat;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Bottom Text Content */
.hero-content {
    text-align: left; /* Alignment left ya center rakh sakte hain */
    color: #ffffff;
    z-index: 2;
}

.icon-medical {
    font-size: 28px;
    color: #2dd4bf; /* Bright teal for dark background visibility */
    margin-bottom: 6px;
}

.hero-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-sub {
    font-size: 14px;
    color: #e2e8f0;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Share Button Top Right Position */
.share-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: auto; /* Remove bottom positioning */
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 5;
    transition: background 0.2s;
}

.share-btn:hover {
    background: #ffffff;
}
/* Tabs */
.tabs-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 24px;
    margin-bottom: 16px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

.tab-content.active-content {
    display: block;
}

/* Cards & Content */
.card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.section-heading {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.section-subheading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.quote-box {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 16px;
    color: #92400e;
    font-weight: 500;
    margin: 16px 0;
    border-radius: 4px;
}

.outline-btn {
    background: transparent;
    border: 1px solid #0d9488;
    color: #0d9488;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.outline-btn:hover {
    background-color: #f0fdfa;
}

/* Lock & Documents Box */
.lock-box {
    background: #1f2937;
    color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.lock-icon {
    font-size: 32px;
    color: #2dd4bf;
    margin-bottom: 12px;
}

.login-input-group {
    display: flex;
    max-width: 350px;
    margin: 12px auto 0;
}

.login-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.login-input-group button {
    background: #14b8a6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Bank & UPI Section */
.sub-text {
    font-size: 13px;
    color: #6b7280;
}

.bank-details-box {
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.bank-icon {
    font-size: 28px;
    color: #0d9488;
}

.bank-info p {
    font-size: 13px;
}

.bank-info span {
    font-weight: 600;
}

.upi-box {
    border: 1px solid #e5e7eb;
    background: #f0fdfa;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.upi-title {
    font-weight: 600;
    font-size: 14px;
}

.qr-placeholder {
    width: 100px;
    height: 100px;
    background: #e5e7eb;
    border: 1px dashed #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #6b7280;
}

/* Right Column (Donation Card) */
.sticky-card {
    position: sticky;
    top: 80px;
}

.donation-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.donate-now-btn {
    width: 100%;
    background-color: #14b8a6;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.donate-now-btn:hover {
    background-color: #0d9488;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.amount-btn {
    border: 1px solid #e5e7eb;
    background: white;
    padding: 8px 4px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.amount-btn.active {
    border-color: #0d9488;
    background-color: #f0fdfa;
    color: #0d9488;
}

.progress-section {
    margin: 20px 0;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.amount-raised {
    font-size: 22px;
    font-weight: 800;
}

.goal-text {
    font-size: 12px;
    color: #6b7280;
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #14b8a6;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

.tax-badge {
    background-color: #f0fdf4;
    color: #15803d;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
}

.organizer-info {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.avatar-teal { background: #ccfbf1; color: #0f766e; }
.avatar-blue { background: #dbeafe; color: #1e40af; }

.info-name { font-size: 13px; font-weight: 600; }
.info-role { font-size: 11px; color: #6b7280; }

.share-section {
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
    text-align: center;
}

.share-title { font-size: 12px; color: #4b5563; margin-bottom: 8px; font-weight: 600; }

.social-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.social-btn {
    border: none;
    color: white;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.facebook { background: #2563eb; }
.whatsapp { background: #22c55e; }