/*=========================================
GOOGLE RESET
=========================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1b2950;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/*=========================================
COLORS
=========================================*/

:root {

    --blue: #153b88;
    --orange: #f6a11a;
    --dark: #1e2d4f;
    --light: #f8f9fc;
    --gray: #6f7885;

}

/*=========================================
HEADER
=========================================*/

.header {

    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 95px;
    z-index: 100;

}

.header .container {

    display: flex;
    align-items: center;
    height: 100%;

}

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;
    margin-right: 80px;

}

.logo img {

    width: 260px;

    height: auto;

    display: block;

}

.nav {

    display: flex;
    align-items: center;
    gap: 45px;

}

.nav a {

    color: var(--dark);
    font-weight: 600;

}

.donate-btn {

    background: var(--orange);
    color: #fff;

    padding: 16px 28px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    margin-left: auto;

    gap: 10px;

    font-weight: 700;

}

/*=========================================
HERO
=========================================*/

.hero {

    padding: 170px 0 80px;

}

.hero-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

}

.badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 30px;

    background: #eef4ff;

    color: var(--blue);

    font-weight: 700;

    margin-bottom: 25px;

}

.hero h1 {

    font-size: 4rem;

    line-height: 1.08;

    font-family: 'Poppins', sans-serif;

}

.hero h1 span {

    color: var(--blue);

}

.hero p {

    margin: 30px 0;

    color: var(--gray);

    line-height: 1.9;

    font-size: 17px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

}

.primary-btn {

    background: var(--orange);

    color: white;

    padding: 18px 30px;

    border-radius: 12px;

    font-weight: 700;

}

.secondary-btn {

    border: 2px solid #dfe4ef;

    color: var(--dark);

    padding: 18px 30px;

    border-radius: 12px;

    font-weight: 700;

}

.hero-features {

    margin-top: 45px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

}

.hero-features div {

    display: flex;

    gap: 10px;

    align-items: center;

}

.hero-features i {

    color: var(--blue);

}

.hero-image {

    position: relative;

}

.hero-image img {

    border-radius: 25px;

}

.donation-card {

    position: absolute;

    bottom: -135px;

    left: 120px;

    width: 340px;

    background: #fff;

    border-radius: 20px;

    padding: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);

}

.progress {

    margin: 20px 0;

    height: 12px;

    background: #ececec;

    border-radius: 30px;

    overflow: hidden;

}

.progress-bar {

    width: 56%;

    height: 100%;

    background: var(--orange);

}

.goal {

    display: flex;

    justify-content: space-between;

}

/*STATISTICS*/

.statistics {
    padding: 90px 0 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: #fff;
    border: 1px solid #edf0f6;
    border-radius: 18px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #eef4ff;
    color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.stat-card h2 {
    color: var(--blue);
    font-size: 34px;
}

.stat-card h4 {
    margin: 6px 0 10px;
}

.stat-card p {
    color: var(--gray);
    line-height: 1.7;
}

/*MISSION*/

.mission {
    padding: 20px 0 80px;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
}

.title-line {
    width: 70px;
    height: 5px;
    background: var(--orange);
    display: block;
    margin: 18px auto 55px;
    border-radius: 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mission-card {
    border-radius: 22px;
    overflow: hidden;
    padding: 35px;
    transition: .35s;
    position: relative;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card img {

    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    margin-top: 25px;
    border-radius: 18px;
    display: block;

}


.protect {
    background: #eef4ff;
}

.rescue {
    background: #fff8ee;
}

.adopt {
    background: #eefbf7;
}

.mission-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.protect .mission-icon {
    color: #1f4ea5;
}

.rescue .mission-icon {
    color: #f6a11a;
}

.adopt .mission-icon {
    color: #0f9b79;
}

.mission-card h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--gray);
    line-height: 1.8;
}

.mission-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    padding: 14px 24px;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
}

.protect a {
    background: #1f4ea5;
}

.rescue a {
    background: #f6a11a;
}

.adopt a {
    background: #0f9b79;
}


/*=========================================
RESCUE STORIES SHOWCASE
=========================================*/

.home-rescue-showcase {

    padding: 120px 0;

    background: #f7f9fd;

    overflow: hidden;

}


.rescue-showcase-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 70px;

    align-items: center;

}


/*=========================================
TEXT
=========================================*/

.rescue-showcase-content {

    max-width: 550px;

}


.rescue-showcase-content h2 {

    font-family: "Poppins", sans-serif;

    font-size: 48px;

    line-height: 1.15;

    margin: 20px 0;

    color: var(--dark);

}


.rescue-showcase-content h2 span {

    display: block;

    color: var(--blue);

}


.rescue-showcase-content p {

    color: var(--gray);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 32px;

}


/*=========================================
SLIDESHOW
=========================================*/

.rescue-showcase {

    position: relative;

    width: 100%;

}


.rescue-slides {

    position: relative;

    width: 100%;

    height: 520px;

    overflow: hidden;

    border-radius: 28px;

    background: #111;

    box-shadow: 0 25px 60px rgba(15, 45, 104, .16);

}


.rescue-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease;

}


.rescue-slide.active {

    opacity: 1;

    visibility: visible;

    z-index: 2;

}


.rescue-slide img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.03);

    transition: transform 5s ease;

}


.rescue-slide.active img {

    transform: scale(1.08);

}


/*=========================================
IMAGE OVERLAY
=========================================*/

.rescue-slide-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(6, 20, 48, .88) 0%, rgba(6, 20, 48, .25) 45%, rgba(6, 20, 48, .05) 100%);

}


/*CAPTION */

.rescue-slide-caption {

    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 35px;

    z-index: 3;

    color: #fff;

}


.rescue-slide-caption span {

    display: block;

    margin-bottom: 9px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, .75);

}


.rescue-slide-caption h3 {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 30px;

    line-height: 1.2;

    color: #fff;

}


/*=========================================
COUNTER
=========================================*/

.rescue-slide-counter {

    position: absolute;

    top: 25px;

    right: 25px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px 15px;

    border-radius: 30px;

    background: rgba(0, 0, 0, .35);

    backdrop-filter: blur(10px);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

}


.counter-line {

    width: 28px;

    height: 1px;

    background: rgba(255, 255, 255, .6);

}


/*=========================================
DOTS
=========================================*/

.rescue-slide-dots {

    position: absolute;

    left: 35px;

    bottom: -28px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 8px;

}


.rescue-slide-dots button {

    width: 9px;

    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #cbd3e2;

    cursor: pointer;

    transition: .35s ease;

}


.rescue-slide-dots button.active {

    width: 30px;

    border-radius: 20px;

    background: var(--blue);

}


/*=========================================
TABLET
=========================================*/

@media (max-width: 992px) {

    .home-rescue-showcase {

        padding: 100px 0;

    }


    .rescue-showcase-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .rescue-showcase-content {

        max-width: 700px;

        text-align: center;

        margin: auto;

    }


    .rescue-showcase-content h2 {

        font-size: 44px;

    }


    .rescue-slides {

        height: 500px;

    }


    .rescue-slide-dots {

        left: 50%;

        transform: translateX(-50%);

        bottom: -28px;

    }

}


/*=========================================
MOBILE
=========================================*/

@media (max-width: 768px) {

    .home-rescue-showcase {

        padding: 80px 0;

    }


    .rescue-showcase-grid {

        gap: 45px;

    }


    .rescue-showcase-content {

        padding: 0 5px;

    }


    .rescue-showcase-content h2 {

        font-size: 34px;

    }


    .rescue-showcase-content p {

        font-size: 15px;

        line-height: 1.8;

    }


    .rescue-slides {

        height: 400px;

        border-radius: 20px;

    }


    .rescue-slide-caption {

        left: 22px;

        right: 22px;

        bottom: 25px;

    }


    .rescue-slide-caption h3 {

        font-size: 23px;

    }


    .rescue-slide-counter {

        top: 18px;

        right: 18px;

    }


    .rescue-slide-dots {

        bottom: -25px;

    }

}


/*=========================================
SMALL MOBILE
=========================================*/

@media (max-width: 480px) {

    .rescue-slides {

        height: 330px;

        border-radius: 18px;

    }


    .rescue-showcase-content h2 {

        font-size: 30px;

    }


    .rescue-slide-caption h3 {

        font-size: 21px;

    }

}


/*TRANSPARENCY*/

.transparency {
    padding-bottom: 40px;
}

.transparency-box {
    border: 1px solid #edf0f6;
    border-radius: 20px;
    padding: 35px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.transparency-text {
    display: flex;
    gap: 25px;
    align-items: center;
}

.transparency-text i {
    font-size: 46px;
    color: var(--blue);
}

.transparency-text p {
    color: var(--gray);
    margin-top: 10px;
}

.report-btn {
    padding: 18px 30px;
    border: 2px solid #d9e2f3;
    border-radius: 12px;
    color: var(--blue);
    font-weight: 700;
}

/*SECTION HEADING*/

.section-heading {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}

.section-heading .section-tag {

    display: inline-block;

    color: var(--orange);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.section-heading h2 {

    font-family: "Poppins", sans-serif;

    font-size: 46px;

    line-height: 1.2;

    color: var(--dark);

    margin-bottom: 20px;

}

.section-heading p {

    color: var(--gray);

    font-size: 17px;

    line-height: 1.9;

}

.top-supporters {

    padding: 110px 0;

    background: #fff;

}

.supporters-grid {

    display: grid;

    grid-template-columns: repeat(7, 1fr);

    gap: 22px;

    margin-top: 70px;

}

.supporter-logo {

    background: #fff;

    border: 1px solid #edf0f6;

    border-radius: 18px;

    height: 120px;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

    transition: .35s;

}

.supporter-logo:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

.supporter-logo img {

    max-width: 100%;

    max-height: 150px;

    object-fit: contain;

}

.supporters-content {
    display: flex;
    flex-direction: column;
}

.supporters-content p {
    display: inline-flex;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.supporters-content span {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*BOTTOM STRIP*/

.bottom-strip {
    background: #0f2d68;
    color: #fff;
    padding: 18px 0;
}

.bottom-strip .container {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.bottom-strip i {
    color: var(--orange);
    margin-right: 8px;
}

/*DONATION MODAL*/

.donation-modal {

    position: fixed;
    inset: 0;
    background: rgba(10, 20, 45, .70);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9999;

}

.donation-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: min(980px, 92%);
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    position: relative;
    transform: translateY(40px);
    transition: .35s;
    max-height: 90vh;
    overflow: auto;

}

.donation-modal.show .modal-content {

    transform: translateY(0);

}

.close-modal {

    position: absolute;
    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: #eef4ff;

    cursor: pointer;

    font-size: 18px;

}

.modal-header {

    text-align: center;
    margin-bottom: 40px;

}

.modal-header h2 {

    font-size: 40px;
    margin: 20px 0 15px;

}

.modal-header p {

    color: var(--gray);
    max-width: 650px;
    margin: auto;
    line-height: 1.8;

}

.modal-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef4ff;
    padding: 10px 18px;
    border-radius: 30px;
    color: var(--blue);
    font-weight: 700;

}

/*DONATION FORM*/

.donation-form {
    margin-bottom: 50px;
}

.donation-type {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;

}

.donation-type input {

    display: none;

}

.donation-type label {

    padding: 14px 35px;

    border: 1px solid #d9e2f3;

    cursor: pointer;

    font-weight: 700;

    transition: .3s;

}

.donation-type label:first-of-type {

    border-radius: 12px 0 0 12px;

}

.donation-type label:last-of-type {

    border-radius: 0 12px 12px 0;

}

.donation-type input:checked+label {

    background: var(--blue);

    color: #fff;

}

.donation-fields {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-bottom: 40px;

}

.field label {

    display: block;

    margin-bottom: 10px;

    font-weight: 700;

}

.field input,

.field textarea {

    width: 100%;

    padding: 15px;

    border: 1px solid #dde4f0;

    border-radius: 12px;

    outline: none;

    font-size: 15px;

}

.field textarea {

    resize: vertical;

}

/*=========================================
DONATION AMOUNT
=========================================*/

.amount-title {
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--dark);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.amount-card {
    position: relative;
    border: 2px solid #e2e8f2;
    border-radius: 18px;
    padding: 22px 34px;
    cursor: pointer;
    transition: .3s ease;
    display: block;
    background: #fff;
}

.amount-card:hover {
    border-color: #cbd8ed;
    box-shadow: 0 8px 25px rgba(21, 59, 136, .06);
}

.amount-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.amount-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.amount-card-top span {
    display: block;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: var(--blue);
}

.amount-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 18px;
    line-height: 1.35;
}

.amount-card small {
    display: block;
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

.amount-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf1ff;
    color: var(--blue);
    font-size: 31px;
}

.amount-card:has(input[type="radio"]:checked) {
    border-color: var(--blue);
    box-shadow: 0 8px 25px rgba(21, 59, 136, .08);
}

.amount-card:has(input[type="radio"]:checked) .amount-card-top span {
    color: var(--blue);
}


/*=========================================
OTHER AMOUNT
=========================================*/

.other-card {
    grid-column: 1 / -1;
    padding: 22px 34px;
}

.other-amount-content {
    display: grid;
    grid-template-columns: 1fr 445px 72px;
    align-items: center;
    gap: 25px;
}

.other-amount-content strong {
    margin-bottom: 5px;
    font-size: 21px;
}

.other-amount-content small {
    font-size: 15px;
}

.other-input-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    border: 1px solid #d8e0ed;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.other-input-wrapper>span {
    padding-left: 18px;
    color: #5d6675;
    font-size: 17px;
}

.other-amount {
    width: 100%;
    height: 100%;
    padding: 0 14px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark);
    font-size: 16px;
}

.other-amount::placeholder {
    color: #737b88;
}

.other-card .amount-icon {
    justify-self: end;
}


/*=========================================
COUNTRY SELECT
=========================================*/

.field select {
    width: 100%;
    padding: 15px;
    border: 1px solid #dde4f0;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    cursor: pointer;
}

.field select:focus,
.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
}


/*=========================================
COMMENT
=========================================*/

.comment-field {
    margin-top: 10px;
}


/*=========================================
FLUTTERWAVE DONATION
=========================================*/

.flutterwave-donation {

    margin-top: 35px;

}


/* DIVIDER */

.flutterwave-divider {

    display: flex;

    align-items: center;

    gap: 15px;

    margin: 10px 0 30px;

}

.flutterwave-divider::before,
.flutterwave-divider::after {

    content: "";

    flex: 1;

    height: 1px;

    background: #e5e8ef;

}

.flutterwave-divider span {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f4f6fa;

    color: #7a8190;

    font-size: 11px;

    font-weight: 800;

}


/* CONTENT */

.flutterwave-content {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px;

    border: 1px solid #e6eaf1;

    border-radius: 18px;

    background: #f9fafc;

}


/* ICON */

.flutterwave-icon {

    flex: 0 0 52px;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #e7f8f1;

    color: #00a86b;

    font-size: 21px;

}


/* TEXT */

.flutterwave-text {

    flex: 1;

}

.flutterwave-text h3 {

    margin: 0 0 6px;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    color: var(--dark);

}

.flutterwave-text p {

    margin: 0;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.7;

}


/* BUTTON */

.flutterwave-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 21px;

    border-radius: 10px;

    background: #00a86b;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;

    margin-top: 20px;

}

.flutterwave-btn:hover {

    background: #008f5b;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 168, 107, .18);

}

.flutterwave-btn i {

    font-size: 12px;

}


/*=========================================
FLUTTERWAVE MOBILE
=========================================*/

@media (max-width: 768px) {

    .flutterwave-content {

        flex-direction: column;

        text-align: center;

        padding: 25px 20px;

    }

    .flutterwave-text p {

        font-size: 13px;

    }

    .flutterwave-btn {

        width: 100%;

    }

}


.wallet-card {

    border-radius: 20px;

    padding: 25px;

    border: 1px solid #edf0f6;

}

.wallet-title {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 20px;

}

.bitcoin .wallet-title {

    color: #F7931A;

}

.ethereum .wallet-title {

    color: #627EEA;

}

.usdt .wallet-title {

    color: #26A17B;

}

.usdc .wallet-title {

    color: #2775CA;

}

.wallet-address {

    display: flex;

    margin-bottom: 20px;

}

.wallet-address input {

    flex: 1;

    border: 1px solid #dde4f0;

    border-radius: 12px 0 0 12px;

    padding: 14px;

    outline: none;

    font-size: 14px;

}

.copy-btn {

    width: 55px;

    border: none;

    background: var(--blue);

    color: #fff;

    cursor: pointer;

    border-radius: 0 12px 12px 0;

}

.wallet-card img {

    width: 170px;

    margin: auto;

    display: block;

}

.security-note {

    margin-top: 35px;

    background: #f8f9fc;

    padding: 18px 22px;

    border-radius: 12px;

    color: var(--gray);

    display: flex;

    gap: 12px;

    align-items: flex-start;

}

/*POWERED BY*/

.powered-by {

    margin-top: 45px;

    padding-top: 35px;

    border-top: 1px solid #e6eaf2;

    text-align: center;

}

.powered-header {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

}

.powered-text {

    font-size: 15px;
    font-style: italic;

    font-weight: 500;

    color: #444;

    white-space: nowrap;
    letter-spacing: .2px;

}

.powered-header img {

    width: 220px;

    height: auto;

    display: block;

}

.powered-by p {

    max-width: 720px;

    margin: 0 auto;

    color: #707b8f;

    font-size: 16px;

    line-height: 1.9;

}

.powered-by p {

    max-width: 720px;
    margin: 0 auto;
    color: #707b8f;
    font-size: 16px;
    line-height: 1.9;

}

.scan-text {

    text-align: center;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;

}

.copy-toast {

    position: fixed;

    right: 30px;

    bottom: 30px;

    background: #143D8D;

    color: #fff;

    padding: 18px 26px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    opacity: 0;

    transform: translateY(20px);

    transition: .35s;

    z-index: 10000;

}

.copy-toast.show {

    opacity: 1;

    transform: translateY(0);

}

/*=========================================
TABLET RESPONSIVE
=========================================*/

@media (max-width: 992px) {

    .header .container {
        justify-content: space-between;
    }

    .logo {
        margin-right: 0;
    }

    .logo img {
        width: 210px;
    }

    .nav {
        gap: 28px;
    }

    .donate-btn {
        padding: 14px 22px;
    }

    .hero {
        padding: 150px 0 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        max-width: 520px;
        margin: 40px auto 0;
    }

    .hero-image {
        max-width: 650px;
        margin: auto;
    }

    .donation-card {
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
        width: 85%;
        max-width: 360px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .transparency-box {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .transparency-text {
        flex-direction: column;
    }

    .supporters-grid {

        grid-template-columns: repeat(4, 1fr);

    }

    .section-heading {

        max-width: 650px;

    }

    .section-heading h2 {

        font-size: 40px;

    }

    .wallet-grid {
        grid-template-columns: 1fr;
    }

}

/*=========================================
MOBILE RESPONSIVE
=========================================*/

@media (max-width:768px) {

    .container {
        width: min(94%, 100%);
    }

    .header {
        height: 85px;
    }

    .header .container {
        gap: 15px;
    }

    .logo img {
        width: 180px;
    }

    .nav {
        gap: 18px;
    }

    .nav a {
        font-size: 15px;
    }

    .donate-btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .hero {
        padding: 130px 0 60px;
    }

    .badge {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: left;
    }

    .hero-image img {
        border-radius: 18px;
    }

    .donation-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .statistics {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        margin: auto;
    }

    .section-title {
        font-size: 32px;
    }

    .mission {
        padding: 10px 0 70px;
    }

    .mission-card {
        padding: 28px;
    }

    .mission-card h3 {
        font-size: 28px;
    }

    .mission-card img {
        height: 420px;
    }

    .transparency-box {
        padding: 30px 22px;
    }

    .top-supporters {

        padding: 80px 0;

    }

    .section-heading h2 {

        font-size: 32px;

    }

    .section-heading p {

        font-size: 16px;

    }

    .supporters-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;

        margin-top: 50px;

    }

    .supporter-logo {

        background: #fff;

        border: 1px solid #edf0f6;

        border-radius: 18px;

        height: 150px;

        display: flex;

        justify-content: center;

        align-items: center;

        padding: 18px;

        transition: .35s;

    }

    .supporter-logo img {

        max-width: 100%;

        max-height: 150px;

        object-fit: contain;

    }

    /* Center the last (7th) logo */

    .supporter-logo:last-child {

        grid-column: 1 / -1;

        justify-self: center;

        width: calc(50% - 9px);

    }

    .report-btn {
        width: 100%;
        text-align: center;
    }

    .bottom-strip .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .modal-content {
        padding: 25px;
        border-radius: 18px;
    }

    .modal-header h2 {
        font-size: 28px;
    }

    .modal-header p {
        font-size: 15px;
    }

    .donation-fields {

        grid-template-columns: 1fr;

    }

    .amount-grid {

        grid-template-columns: 1fr;

    }


    .amount-title {

        font-size: 22px;

        text-align: center;

    }

    .amount-card {
        padding: 20px;
    }

    .amount-card-top span {
        font-size: 36px;
    }

    .amount-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        font-size: 26px;
    }

    .other-card {
        grid-column: auto;
    }

    .other-amount-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .other-card .amount-icon {
        justify-self: center;
    }

    .other-input-wrapper {
        width: 100%;
    }

    .donation-type {

        flex-direction: column;

    }

    .donation-type label {

        border-radius: 12px !important;

        margin-bottom: 10px;

        text-align: center;

    }

    .wallet-card {
        padding: 20px;
    }

    .wallet-title {
        font-size: 18px;
    }

    .wallet-address {
        flex-direction: column;
    }

    .wallet-address input {
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .copy-btn {
        width: 100%;
        border-radius: 10px;
        height: 48px;
    }

    .wallet-card img {
        width: 160px;
    }

    .copy-toast {
        left: 15px;
        right: 15px;
        bottom: 20px;
        justify-content: center;
    }

    .powered-header {

        gap: 8px;

    }

    .powered-text {

        font-size: 18px;

    }

    .powered-header img {

        width: 160px;

    }

    .powered-by p {

        font-size: 15px;

        line-height: 1.8;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media (max-width:480px) {

    .logo img {
        width: 155px;
    }

    .nav {
        gap: 14px;
    }

    .nav a {
        font-size: 14px;
    }

    .donate-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 15px;
    }

    .badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .mission-card h3 {
        font-size: 24px;
    }

    .stat-card h2 {
        font-size: 28px;
    }

    .section-heading h2 {

        font-size: 28px;

    }

    .section-heading p {

        font-size: 15px;

    }

    .modal-header h2 {
        font-size: 24px;
    }

}

/*=========================================
DONATION TOAST
=========================================*/

.donation-toast {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 100000;

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 420px;

    padding: 16px 20px;

    border-radius: 12px;

    background: #ffffff;

    color: #1f2937;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

    font-size: 14px;

    font-weight: 600;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s ease;

}


.donation-toast.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.donation-toast i {

    font-size: 20px;

}


.donation-toast.success i {

    color: #16a34a;

}


.donation-toast.error i {

    color: #dc2626;

}


@media (max-width: 600px) {

    .donation-toast {

        left: 15px;

        right: 15px;

        bottom: 15px;

        max-width: none;

    }

}