/* ================= GLOBAL ================= */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* ================= HERO ================= */
.about-hero-image {
    background: url("https://images.unsplash.com/photo-1526256262350-7da7584cf5eb") center/cover no-repeat;
    height: 320px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-hero-image h1 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
}

.about-hero-image p {
    color: #eee;
    margin-top: 8px;
}


/* ================= NGO CREDENTIALS ================= */
.ngo-credentials {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #c62828;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.ngo-credentials h5 {
    margin-bottom: 15px;
    font-weight: 700;
}

.ngo-credentials ul {
    padding-left: 18px;
}

/* ================= IMPACT ================= */
.impact-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-tile {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.impact-tile h3 {
    font-size: 2.6rem;
    color: #c62828;
    margin-bottom: 10px;
}

.impact-tile p {
    color: #555;
    font-size: 0.95rem;
}

/* ================= OUR WORK & IMPACT ================= */

.work-impact-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.work-impact-box {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    text-align: center;
}

.work-impact-box h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #222;
}

.work-impact-box .section-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
}

/* GRID */
.work-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.work-impact-grid ul {
    list-style: none;
    padding: 0;
}

.work-impact-grid li {
    font-size: 15px;
    color: #444;
    margin-bottom: 14px;
    position: relative;
    padding-left: 26px;
}

/* CHECK ICON */
.work-impact-grid li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #c62828;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    .work-impact-box {
        padding: 35px 25px;
    }

    .work-impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= WORK LIST ================= */
.work-list {
    list-style: none;
    padding-left: 0;
}

.work-list li {
    margin-bottom: 12px;
    color: #444;
}

.work-list li::before {
    content: "✔";
    color: #c62828;
    margin-right: 10px;
    font-weight: bold;
}

/* ================= MISSION ================= */
.mission-text {
    max-width: 720px;
    margin: auto;
    color: #555;
}

/* ================= CTA ================= */
.cta-section {
    background: #c62828;
    color: #fff;
    padding: 70px 0 60px;
}

.cta-section h2 {
    font-weight: 700;
}

.cta-section p {
    opacity: 0.95;
}

/* ================= TEAM PAGE ================= */

.page-hero {
    padding: 55px 0 45px;
    text-align: center;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #f6f7f8 100%
    );
    border-bottom: 1px solid #eee;
}


.page-hero h1 {
    font-size: 38px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}


.page-hero p {
    font-size: 17px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}


/* SECTION */
.team-section {
    padding: 70px 0;
}

.light-bg {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* GRID */
.team-grid {
    display: grid;
    gap: 30px;
}

.directors-grid {
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
}

.members-grid {
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.members-grid .team-card {
    padding: 18px 15px;
}


/* CARD */
.team-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.page-hero h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d32f2f;
    margin: 16px auto 0;
    border-radius: 2px;
}


.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
}

.members-grid .team-card img {
    width: 70px;
    height: 70px;
}


.team-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.team-card .role {
    display: block;
    font-weight: 600;
    color: #d32f2f;
    margin-bottom: 8px;
}

.team-card .meta {
    display: block;
    font-size: 14px;
    color: #555;
}

/* DIRECTOR HIGHLIGHT */
.director-card {
    border-top: 4px solid #d32f2f;
}

/* RESPONSIVE */


@media (max-width: 768px) {
    .page-hero {
        padding: 55px 0 45px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }
}

.members-grid .team-card h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.members-grid .role {
    font-size: 13px;
}

.members-grid .meta {
    font-size: 12px;
}
.members-grid .team-card:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
}


/* gallery-section */


.media-overview {
    padding: 70px 0;
}

.overview-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.overview-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.overview-block.reverse > * {
    direction: ltr;
}
.overview-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #222;
}

.overview-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.overview-points {
    padding-left: 18px;
    margin-bottom: 25px;
}

.overview-points li {
    margin-bottom: 8px;
    color: #444;
}
.overview-visual img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* RESPONSIVE gallery-section */

@media (max-width: 768px) {
    .overview-block,
    .overview-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .overview-visual {
        order: -1;
    }
}

/* Events*/
.events-section {
    padding: 60px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.event-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-content {
    padding: 22px;
}

.event-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.event-meta {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.event-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.event-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
}
.events-note {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
    }
}
/* Event Detail*/
.event-hero {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f6f7f8);
    border-bottom: 1px solid #eee;
}

.event-hero h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 8px;
}

.event-meta {
    color: #666;
    font-size: 15px;
}
.event-summary {
    padding: 50px 0;
}

.event-summary h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.event-summary p {
    text-align: justify;
    color: #555;
    line-height: 1.7;
}
.event-stats-section {
    background: #f6f7f8;
    padding: 40px 0;
}

.event-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.stat-box strong {
    display: block;
    font-size: 28px;
    color: #d32f2f;
}

.stat-box span {
    font-size: 14px;
    color: #555;
}
.event-gallery {
    padding: 60px 0;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.event-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.event-downloads {
    padding: 50px 0;
    background: #fff;
}

.download-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .event-hero h1 {
        font-size: 28px;
    }
}

/* LIGHTBOX OVERLAY */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* IMAGE */
.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 6px;
}

.lightbox-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* Positions */
.lightbox-close {
    top: 20px;
    right: 25px;
    font-size: 26px;
}

.lightbox-download {
    right: 25px;
    bottom: 25px;
    font-size: 22px;
}
/* IMAGE WRAPPER */
.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-image-wrapper img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
}
/* IMAGE WRAPPER */
.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ARROWS — CENTERED TO IMAGE */
.lightbox-image-wrapper .lightbox-prev,
.lightbox-image-wrapper .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* LEFT ARROW */
.lightbox-image-wrapper .lightbox-prev {
    left: -60px;
}

/* RIGHT ARROW */
.lightbox-image-wrapper .lightbox-next {
    right: -60px;
}
@media (max-width: 768px) {
    .lightbox-image-wrapper .lightbox-prev {
        left: 10px;
    }

    .lightbox-image-wrapper .lightbox-next {
        right: 10px;
    }
}
/* ================= NEWS ================= */

.news-section {
    padding: 70px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}

.news-card img {
    width: 100%;
    height: auto;              /* IMPORTANT */
    max-height: 260px;
    object-fit: contain;       /* IMPORTANT */
    background: #f2f2f2;       /* neutral background */
    padding: 10px;
}


.news-content {
    padding: 24px;
}

.news-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #222;
    line-height: 1.4;
}

.news-meta {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 14px;
}

/* ================= SPORTS RECOGNITION ================= */

.sports-intro {
    padding: 50px 0;
}

.sports-intro p {
    max-width: 820px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

.sports-awards-section {
    padding: 70px 0;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sports-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.sports-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sports-content {
    padding: 24px;
}

.sports-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
}

.sports-meta {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.sports-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;
}

.award-year {
    display: inline-block;
    font-size: 13px;
    color: #c62828;
    font-weight: 600;
}

.sports-note {
    background: #f6f7f8;
    padding: 50px 0;
}

.sports-note p {
    max-width: 820px;
    margin: auto;
    text-align: center;
    font-size: 15px;
    color: #555;
}
/* ================= GALLERY – EDITORIAL IMAGE STYLE ================= */

.gallery-thumb {
    width: 420px;
    height: 260px;

    /* IMPORTANT: no background, no box */
    background: none;
    box-shadow: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE ITSELF IS THE DESIGN */
.gallery-thumb img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Soft editorial curves */
    border-radius: 26px;

    /* Very subtle natural depth */
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
    .gallery-thumb {
        width: 100%;
        height: 220px;
    }

    .gallery-thumb img {
        border-radius: 18px;
    }
}

/* ================= VOICES OF IMPACT – FINAL ================= */

.voices-section {
    padding: 45px 0 10px;
    background: #fafafa;
}

.impact-voice {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 110px;
    
}

.impact-voice.reverse {
    grid-template-columns: 1fr 240px;
}

.impact-photo img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(6%);
}

/* Quote text */
.impact-quote-text {
    font-size: 22px;
    line-height: 1.85;
    color: #222;
    position: relative;
    margin-bottom: 24px;
}

/* Decorative quote */
.impact-quote-text::before {
    content: "“";
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 120px;
    color: #c62828;
    opacity: 0.12;
    line-height: 1;
}

/* Author */
.impact-author strong {
    display: block;
    font-size: 16px;
    color: #222;
}

.impact-author span {
    font-size: 14px;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .impact-voice,
    .impact-voice.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impact-photo img {
        margin: 0 auto 20px;
    }

    .impact-quote-text::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.voices-context {
    padding: 60px 0 30px;
}

.context-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* small editorial label */
.context-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #c62828;
    margin-bottom: 18px;
}

/* main text */
.context-text {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
}

/* subtle divider */
.context-box::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #c62828;
    opacity: 0.35;
    margin: 35px auto 0;
}

/* mobile */
@media (max-width: 768px) {
    .context-text {
        font-size: 16px;
    }
}

.voices-context-strip {
    padding: 18px 0 30px;
}

.voices-context-strip p {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.voices-context-strip strong {
    color: #c62828;
    font-weight: 600;
}
/* ================= CONTACT PAGE ================= */

.contact-section {
    padding: 70px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: auto;
}

/* INFO */
.contact-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #222;
}

.contact-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 14px;
}

.contact-note {
    font-size: 14px;
    color: #777;
}

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

.contact-form button {
    padding: 10px 28px;
    border-radius: 22px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section {
        padding: 50px 20px 70px;
    }
}
/* ================= DONOR REGISTER ================= */

.donor-register-section {
    padding: 60px 0 90px;
    background: #f7f8f9;
}

/* Header */
.register-header h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}

.register-header p {
    font-size: 17px;
    color: #666;
    margin-bottom: 45px;
}

/* Card */
.register-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    padding: 50px;
    max-width: 1100px;
    margin: auto;
}

/* Grid */
.register-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Left Info */
.register-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.register-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
}

.register-points {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.register-points li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #444;
}

.register-note {
    font-size: 14px;
    color: #666;
    background: #f6f7f8;
    padding: 16px;
    border-radius: 12px;
}

/* Form */
.register-form {
    background: #fafafa;
    padding: 35px;
    border-radius: 18px;
}

.form-title {
    font-size: 20px;
    margin-bottom: 22px;
}

/* OTP Row */
.otp-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    margin-bottom: 14px;
}

/* Button */
.register-btn {
    padding: 12px;
    font-size: 16px;
    border-radius: 30px;
}

/* Mobile */
@media (max-width: 768px) {
    .register-grid {
        grid-template-columns: 1fr;
    }

    .register-card {
        padding: 35px 25px;
    }

    .otp-row {
        grid-template-columns: 1fr;
    }
}
/* TRUST BADGES */

.trust-badges {
    display: grid;
    gap: 12px;
    margin: 20px 0 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.trust-item span {
    font-weight: 500;
}


.form-control,
.form-select {
    transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 0 0.15rem rgba(211,47,47,0.15);
}
.register-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211,47,47,0.35);
}
#otpStatus {
    animation: fadeSlide 0.4s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* SUCCESS PAGE */

.donor-success {
    padding: 80px 20px;
    background: #f7f8f9;
    text-align: center;
}

.success-card {
    background: #ffffff;
    max-width: 600px;
    margin: auto;
    padding: 50px 40px;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.success-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.success-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: #444;
}
/* ================= AUTH ================= */
.auth-wrap {
    padding: 90px 20px;
    background: linear-gradient(120deg,#f9fafb,#ffffff);
}

.auth-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.auth-info h2 {
    font-size: 36px;
    font-weight: 600;
}

.auth-info p {
    max-width: 420px;
    color: #555;
}

.auth-badge {
    background: #eaf4ea;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 16px;
}

.auth-card {
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {opacity:0; transform:translateY(18px);}
    to {opacity:1; transform:none;}
}

.form-control {
    border-radius: 10px;
    padding: 11px 14px;
}

.form-control:focus {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198,40,40,0.12);
}


/* ================= DASHBOARD ================= */

.dashboard-wrap {
    padding: 70px 0;
    background: #f9fafb;
}

.dashboard-hero {
    text-align: center;
    margin-bottom: 50px;
}

.dashboard-hero h2 {
    font-size: 34px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-card h3 {
    font-size: 36px;
    color: #c62828;
}

.dashboard-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}
.success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.latest-donation {
  border-left: 4px solid #dc3545;
  background-color: #fff5f5;
}
.skeleton {
  color: transparent;
  background: linear-gradient(
    90deg,
    #eee 25%,
    #f5f5f5 37%,
    #eee 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.just-added {
  animation: pulse 1.5s ease-in-out;
}

@keyframes pulse {
  0% { background-color: #ffecec; }
  50% { background-color: #ffd6d6; }
  100% { background-color: #fff5f5; }
}

.count-pop {
  animation: pop 0.4s ease-in-out;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

