/* =========================================
   RESET & GLOBAL SETTINGS
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1d2939;
    overflow-x: hidden;

    background: #071b2d;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* =========================================
   NAVBAR
========================================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar {
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #172b4d;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 16px;
    color: #0b5fa5;
}

.logo-text span {
    font-size: 7px;
    color: #667085;
}


/* NAVIGATION */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu a {
    text-decoration: none;
    color: #344054;

    font-size: 13px;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #0875b8;
}


/* DONATE BUTTON */

.donate-nav-btn {
    text-decoration: none;

    background: #e63946;
    color: white;

    padding: 12px 22px;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.donate-nav-btn:hover {
    transform: translateY(-2px);
    background: #cf2f3b;
}


/* MOBILE MENU */

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 22px;
    cursor: pointer;
}


/* =========================================
   HERO SECTION
========================================= */

.hero {

    min-height: 100vh;

    padding-top: 72px;
    padding-bottom: 40px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background: rgba(7, 27, 45, 0.45);

    backdrop-filter: blur(3px);
}


/* =========================================
   HERO BACKGROUND VIDEO
   VIDEO ONLY RUNS INSIDE HERO
========================================= */

.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 27, 45, 0.35) 0%,
        rgba(7, 27, 45, 0.22) 50%,
        rgba(7, 27, 45, 0.10) 100%
    );

    z-index: 1;

}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 55px;

    align-items: center;

    width: 90%;
    max-width: 1250px;
    margin: auto;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;

    margin: 22px 0;

    color: white;
}

.hero h1 span {
    color: #65c9ff;
}

.hero-text > p {
    color: #eef5fa;

    font-size: 18px;
    line-height: 1.8;

    max-width: 650px;
}


/* EMERGENCY BADGE */

.emergency-badge {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    background: rgba(255, 255, 255, 0.92);

    color: #d62839;

    padding: 13px 22px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 30px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 14px 22px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.primary-btn {
    background: #0875b8;
    color: white;

    box-shadow: 0 10px 25px rgba(8, 117, 184, 0.35);
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: #06679f;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.55);

    color: white;

    backdrop-filter: blur(8px);
}

.secondary-btn:hover {
    background: white;
    color: #0875b8;

    transform: translateY(-3px);
}


/* =========================================
   HERO DONATION CARD
========================================= */

.hero-card {
    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(15px);

    padding: 32px;

    border-radius: 22px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.card-top {
    color: #0875b8;

    font-size: 13px;
    font-weight: 600;

    display: flex;
    align-items: center;

    gap: 10px;
}

.hero-card h3 {
    margin-top: 22px;

    font-size: 26px;
    color: #102a43;
}

.hero-card p {
    color: #667085;

    font-size: 13px;

    line-height: 1.7;

    margin: 10px 0 25px;
}

.quick-donation {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.amount-btn {
    padding: 13px;

    border: 1px solid #d0d5dd;

    background: white;

    border-radius: 8px;

    cursor: pointer;

    transition: 0.3s;
}

.amount-btn:hover {
    border-color: #0875b8;
}

.amount-btn.active {
    background: #0875b8;
    color: white;
}

.full-donate-btn {
    display: block;

    margin-top: 20px;

    padding: 14px;

    text-align: center;

    text-decoration: none;

    background: #e63946;
    color: white;

    border-radius: 8px;

    font-weight: 600;

    transition: 0.3s;
}

.full-donate-btn:hover {
    background: #cf2f3b;
    transform: translateY(-2px);
}

.hero-card small {
    display: block;

    margin-top: 18px;

    color: #98a2b3;

    font-size: 10px;
}


/* =========================================
   ALL SECTIONS
   NORMAL SOLID BACKGROUNDS
========================================= */

.section {
    padding: 100px 0;

    position: relative;

    background: #ffffff;
}

.about-section {
    background: #ffffff;
}

.support-section {
    background: #f6f9fb;
}

.medical-section {
    background: #ffffff;
}

.kits-section {
    background: #f7fafc;
}

.drives-section {
    background: #ffffff;
}

.contribution-section {
    background: #f6f9fb;
}

.donate-section {
    background: #ffffff;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
    margin-bottom: 50px;
}

.section-heading.center {
    text-align: center;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 55px;
}

.section-tag {
    color: #0875b8;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.section-heading h2,
.drives-content h2,
.contribution-text h2 {
    font-size: 40px;

    margin: 12px 0 18px;

    color: #102a43;
}

.section-heading h2 span,
.drives-content h2 span,
.contribution-text h2 span {
    color: #0875b8;
}

.section-heading p {
    color: #475467;

    line-height: 1.8;
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-relief-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    margin: 35px 0 50px;
}

.relief-image {
    width: 100%;

    height: 330px;

    overflow: hidden;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.35);

    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.20);
}

.relief-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.4s ease;
}

.relief-image:hover img {
    transform: scale(1.05);
}

.about-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.about-card {
    padding: 35px;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 15px;

    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-icon {
    width: 58px;
    height: 58px;

    background: #eaf6fd;

    color: #0875b8;

    display: grid;
    place-items: center;

    border-radius: 14px;

    font-size: 24px;
}

.about-card h3 {
    margin: 22px 0 12px;
}

.about-card p {
    color: #667085;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   SUPPORT SECTION
========================================= */

.impact-image {
    width: 100%;

    margin: 30px auto 45px;

    display: flex;
    justify-content: center;
}

.impact-image img {
    width: 100%;

    height: 420px;

    object-fit: cover;
    object-position: center;

    border-radius: 18px;

    display: block;

    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.20);
}

.support-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.support-box {
    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(10px);

    padding: 30px;

    border-radius: 15px;

    border: 1px solid rgba(255, 255, 255, 0.7);
}

.support-box i {
    color: #0875b8;

    font-size: 30px;
}

.support-box h3 {
    margin: 20px 0 10px;
}

.support-box p {
    color: #667085;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   MEDICAL SUPPORT
========================================= */

.medical-support-image {
    width: 100%;

    margin: 25px 0 35px;
}

.medical-support-image img {
    width: 100%;

    height: 280px;

    object-fit: contain;
    object-position: center;

    border-radius: 18px;

    display: block;

    box-shadow: 0 10px 25px rgba(16, 42, 67, 0.18);
}

.medical-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.medical-card {
    padding: 30px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.7);
}

.medical-card i {
    font-size: 30px;

    color: #e63946;
}

.medical-card h3 {
    margin: 20px 0;
}

.medical-card ul {
    list-style: none;
}

.medical-card li {
    font-size: 13px;

    color: #667085;

    padding: 8px 0;
}


/* =========================================
   DONATION KITS
========================================= */

.kits-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}
.kit-card {
    background: rgba(255, 255, 255, 0.82);

    backdrop-filter: blur(10px);

    padding: 38px;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    position: relative;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    display: flex;

    flex-direction: column;

    height: 100%;
}

.kit-card.featured {
    border: 2px solid #0875b8;

    transform: scale(1.04);
}

.popular {
    position: absolute;

    top: -14px;

    background: #0875b8;

    color: white;

    padding: 6px 15px;

    border-radius: 20px;

    font-size: 10px;
}

.kit-price {
    font-size: 38px;

    color: #0875b8;

    font-weight: 700;
}

.kit-card h3 {
    margin: 15px 0;
}

.kit-card p {
    color: #667085;

    font-size: 13px;
}

.kit-card ul {
    list-style: none;

    margin: 25px 0;

    max-height: 220px;

    overflow-y: auto;

    padding-right: 6px;
}
.kit-card ul::-webkit-scrollbar {
    width: 5px;
}

.kit-card ul::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);

    border-radius: 10px;
}

.kit-card ul::-webkit-scrollbar-thumb {
    background: #0875b8;

    border-radius: 10px;
}

.kit-card ul::-webkit-scrollbar-thumb:hover {
    background: #06679f;
}
.kit-card li {
    padding: 9px 0;

    font-size: 13px;
}

.kit-card li i {
    color: #22c55e;
}

.kit-btn {
    display: block;

    width: 100%;

    padding: 13px;

    border-radius: 8px;

    background: #0875b8;

    color: white;

    text-align: center;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s;

    margin-top: auto;
}

.kit-btn:hover {
    background: #06679f;
}


/* =========================================
   MEDICAL DONATION SECTION
   NORMAL BACKGROUND
========================================= */

.medical-donation-section {
    padding: 85px 0;

    position: relative;

    background: #ffffff;
}


/* 4 CARDS PER ROW */

.donation-items-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    align-items: stretch;
}


/* SMALLER CARD */

.donation-item-card {

    background: rgba(255, 255, 255, 0.94);

    padding: 22px;

    border-radius: 18px;

    border: 1px solid rgba(8, 117, 184, 0.18);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;
}


.donation-item-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);

    border-color: #0875b8;
}


/* ICON SMALLER */

.donation-item-icon {

    width: 54px;

    height: 54px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #eaf6fd;

    color: #0875b8;

    border-radius: 14px;

    font-size: 22px;

    margin-bottom: 16px;

    transition: 0.3s;
}


.donation-item-card:hover .donation-item-icon {

    background: #0875b8;

    color: white;
}


/* FLOOD CARDS */

.flood-card .donation-item-icon {

    background: rgba(230, 57, 70, 0.10);

    color: #e63946;
}


.flood-card:hover .donation-item-icon {

    background: #e63946;

    color: white;
}


/* TITLE */

.donation-item-card h3 {

    font-size: 18px;

    line-height: 1.35;

    color: #102a43;

    margin-bottom: 9px;
}


/* DESCRIPTION */

.donation-item-card p {

    font-size: 12px;

    color: #667085;

    line-height: 1.65;

    margin-bottom: 14px;
}


/* LIST */

.donation-item-card ul {

    list-style: none;

    padding: 0;

    margin: 0 0 18px;
}


.donation-item-card ul li {

    padding: 5px 0;

    font-size: 11.5px;

    color: #475467;

    line-height: 1.4;
}


.donation-item-card ul li i {

    color: #22c55e;

    margin-right: 6px;
}


/* BUTTON */

.prefer-donate-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    width: 100%;

    padding: 11px 8px;

    background: #0875b8;

    color: white;

    text-decoration: none;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 600;

    transition: 0.3s ease;

    margin-top: auto;
}


.prefer-donate-btn:hover {

    background: #e63946;

    transform: translateY(-2px);
}


/* =========================================
   DONATION DRIVES
========================================= */

.drives-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 80px;

    align-items: center;
}

.drives-content p {
    color: #475467;

    line-height: 1.8;
}

.drive-points {
    margin: 30px 0;
}

.drive-points div {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 16px 0;
}

.drive-points i {
    color: #0875b8;
}

.drive-info-card {
    background: rgba(7, 27, 45, 0.78);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    color: white;

    padding: 45px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);

    border: 1px solid rgba(255, 255, 255, 0.18);
}

.drive-info-card i {
    font-size: 35px;

    color: #60c7ff;
}

.drive-info-card h3 {
    margin: 20px 0 10px;
}

.drive-info-card p {
    color: #d0dce8;

    font-size: 13px;
}

.drive-info-card input {
    width: 100%;

    padding: 14px;

    margin-top: 25px;

    border-radius: 7px;

    border: none;
}

.drive-info-card button {
    width: 100%;

    margin-top: 12px;

    padding: 14px;

    background: #e63946;

    color: white;

    border: none;

    border-radius: 7px;

    cursor: pointer;

    font-family: inherit;
}

#centerResult {
    margin-top: 15px;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================
   CONTRIBUTION SECTION
========================================= */

.contribution-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 80px;
}

.contribution-text p {
    color: #475467;

    line-height: 1.8;
}

.steps {
    margin-top: 35px;
}

.step {
    display: flex;

    gap: 20px;

    margin-bottom: 25px;
}

.step span {
    min-width: 45px;

    width: 45px;
    height: 45px;

    background: #0875b8;

    color: white;

    display: grid;
    place-items: center;

    border-radius: 50%;
}

.step h4 {
    margin-bottom: 5px;
}

.step p {
    font-size: 13px;
}


/* =========================================
   FORMS
========================================= */

.registration-form,
.donation-form {

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(15px);

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.registration-form h3 {
    margin-bottom: 25px;
}

.registration-form input,
.registration-form select,
.registration-form textarea,
.donation-form input,
.donation-form select,
.donation-form textarea {

    width: 100%;

    padding: 14px;

    margin-bottom: 15px;

    border: 1px solid #d0d5dd;

    border-radius: 7px;

    font-family: inherit;

    background: rgba(255, 255, 255, 0.9);
}

.registration-form button,
.donate-submit {

    width: 100%;

    padding: 15px;

    border: none;

    background: #0875b8;

    color: white;

    border-radius: 7px;

    cursor: pointer;

    font-family: inherit;

    font-weight: 600;
}


/* =========================================
   DONATION FORM
========================================= */

.donation-form {

    max-width: 800px;

    margin: auto;
}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* =========================================
   QUOTE SECTION
========================================= */

.quote-section {

    background: rgba(8, 117, 184, 0.88);

    backdrop-filter: blur(10px);

    color: white;

    text-align: center;

    padding: 100px 0;
}

.quote-section i {

    font-size: 40px;

    opacity: 0.6;
}

.quote-section h2 {

    max-width: 850px;

    margin: 25px auto;

    font-size: 34px;
}

.quote-section p {
    opacity: 0.85;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: rgba(12, 31, 51, 0.96);

    backdrop-filter: blur(12px);

    color: #d0dce8;

    padding: 60px 0 0;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 45px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* BRAND */

.footer-logo-row {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.footer-logo-img {
    width: 60px;

    height: 60px;

    object-fit: contain;
}

.footer-logo-text {
    display: flex;

    flex-direction: column;
}

.footer-logo-text strong {
    font-size: 16px;

    color: #ffffff;
}

.footer-logo-text span {
    font-size: 10px;

    color: #98a2b3;

    margin-top: 2px;
}

.footer-brand p {
    font-size: 13px;

    line-height: 1.8;

    color: #b0bdca;

    max-width: 320px;
}


/* LINKS */

.footer-links h4,
.footer-contact h4 {
    color: white;

    font-size: 15px;

    margin-bottom: 20px;
}

.footer-links {
    display: flex;

    flex-direction: column;
}

.footer-links a {
    color: #b0bdca;

    text-decoration: none;

    font-size: 13px;

    margin-bottom: 12px;

    transition: 0.3s ease;

    width: fit-content;
}

.footer-links a:hover {
    color: #65c9ff;

    padding-left: 4px;
}


/* CONTACT */

.footer-contact {
    display: flex;

    flex-direction: column;
}

.footer-contact a,
.footer-address {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #b0bdca;

    text-decoration: none;

    font-size: 13px;

    margin-bottom: 14px;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #65c9ff;
}

.footer-contact i,
.footer-address i {
    color: #65c9ff;

    width: 16px;
}

.footer-donate-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #e63946;

    color: white !important;

    padding: 12px 20px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    margin-top: 10px;

    width: fit-content;

    transition: 0.3s ease;
}

.footer-donate-btn:hover {
    background: #cf2f3b;

    transform: translateY(-2px);
}


/* BOTTOM BAR */

.footer-bottom {
    text-align: center;

    padding: 22px 0;
}

.footer-bottom p {
    font-size: 12px;

    color: #8492a6;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: left;
    }

    .footer-logo-img {
        width: 90px;

        height: 90px;
    }
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content,
    .drives-grid,
    .contribution-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 130px;

        padding-bottom: 80px;
    }

    .hero-card {
        max-width: 600px;
    }

    .support-grid,
    .medical-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* DONATION CARDS - 3 PER ROW */

    .donation-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 850px) {

    .donation-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .container {
        width: 90%;
    }

    .navbar {
        height: 72px;
    }

    .logo-img {
        width: 45px;

        height: 45px;
    }

    .logo-text strong {
        font-size: 13px;
    }

    .donate-nav-btn {
        display: none;
    }

    .hero {

        min-height: auto;

        padding-top: 120px;

        padding-bottom: 70px;

        background-position: center;
    }

    .hero-content {
        gap: 45px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .emergency-badge {

        font-size: 12px;

        padding: 11px 16px;
    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .drives-content h2,
    .contribution-text h2 {
        font-size: 30px;
    }


    /* ABOUT */

    .about-relief-gallery {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .relief-image {
        height: 280px;
    }


    /* GRIDS */

    .about-grid,
    .kits-grid,
    .support-grid,
    .medical-grid {
        grid-template-columns: 1fr;
    }

    .kit-card.featured {
        transform: none;
    }


    /* IMAGES */

    .impact-image img,
    .medical-support-image img {
        height: 260px;
    }


    /* FORMS */

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-form,
    .donation-form {
        padding: 25px;
    }


    /* FOOTER */

    .footer-logos {

        flex-direction: column;

        gap: 25px;
    }

    .footer-logo-box img[src="logo.png"] {
        width: 150px;
    }

    .annadhara-logo img {
        width: 200px;
    }

    .footer-logo-box img[src="shikshit.jpeg"] {
        width: 150px;
    }


    /* QUOTE */

    .quote-section {
        padding: 70px 20px;
    }

    .quote-section h2 {
        font-size: 25px;
    }

}


@media (max-width: 600px) {

    .qr-donation-section {
        margin-top: 40px;
        padding: 45px 18px;
        border-radius: 18px;
    }

    .qr-donation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .qr-donation-text h2 {
        font-size: 30px;
    }

    .qr-donation-text > p {
        font-size: 13px;
    }

    .qr-code-card {
        max-width: 360px;
    }

    .medical-donation-section {
        padding: 70px 0;
    }

    .donation-items-grid {
        grid-template-columns: 1fr;
    }

    .donation-item-card {
        padding: 24px;
    }

}


/* =========================================
   QR DONATION SECTION
========================================= */

.qr-donation-section {
    margin: 55px 0 0;
    padding: 65px 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f5fbff 0%, #ffffff 55%, #eef7ff 100%);
    border: 1px solid rgba(8, 117, 184, 0.14);
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.10);
    scroll-margin-top: 95px;
}

.qr-donation-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 55px;
    align-items: center;
}

.qr-donation-text h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #102a43;
    margin: 12px 0 18px;
}

.qr-donation-text h2 span {
    color: #0875b8;
}

.qr-donation-text > p {
    max-width: 600px;
    color: #475467;
    font-size: 15px;
    line-height: 1.8;
}

.qr-payment-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 18px;
    border-radius: 30px;
    background: #ffffff;
    color: #102a43;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(16, 42, 67, 0.08);
}

.qr-payment-note i {
    color: #0875b8;
    font-size: 18px;
}

.qr-code-card {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.16);
    text-align: center;
}

.qr-code-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.qr-code-card p {
    margin: 12px 0 4px;
    color: #102a43;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   DONATION CONTACT
========================================= */

.donation-contact {
    text-align: center;

    margin-top: 25px;

    font-family: 'Poppins', sans-serif;
}

.donation-contact p {
    margin-bottom: 8px;

    font-size: 15px;

    color: #555;
}

.donation-contact p i {
    color: #d94141;

    margin-right: 6px;
}

.donation-contact a {
    font-size: 18px;

    font-weight: 600;

    color: #1f6f9f;

    text-decoration: none;
}

.donation-contact a:hover {
    text-decoration: underline;
}


/* =========================================
   CUSTOM AMOUNT
========================================= */

.custom-amount-box {
    display: none;

    margin-top: 15px;
}

.custom-amount-box input {
    width: 100%;

    padding: 16px 18px;

    border: 1px solid #d6dce5;

    border-radius: 10px;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    box-sizing: border-box;
}

.custom-amount-box input:focus {
    border-color: #2878a8;
}


/* =========================================
   PREMIUM GLASS CARDS
   KEPT SAME AS YOUR ORIGINAL DESIGN
========================================= */

.about-card,
.support-box,
.medical-card,
.kit-card,
.donation-item-card,
.registration-form,
.donation-form {

    background: rgba(255, 255, 255, 0.72);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.65);

}


/* DRIVE INFO CARD */

.drive-info-card {

    background: rgba(7, 27, 45, 0.78);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);

}
/* =========================================
   QR PAYMENT FLOW
========================================= */

.qr-payment-steps {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    color: #344054;
    font-size: 14px;
    line-height: 1.5;
}

.qr-payment-steps div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-payment-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 50%;
    background: #0875b8;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.qr-continue-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 22px;
    border-radius: 10px;
    background: #0875b8;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

.qr-continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(8, 117, 184, .22);
}

.registration-note {
    margin: -8px 0 18px;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
}

.registration-custom-amount {
    display: none;
}

.payment-proof-label {
    display: block;
    margin-top: 4px;
    margin-bottom: 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
}

.payment-proof-label span {
    color: #d92d20;
}

.payment-proof-help {
    display: block;
    margin-top: -8px;
    margin-bottom: 8px;
    color: #667085;
    font-size: 11px;
}


/* =========================================
   SELECTED DONATION AMOUNT
========================================= */

.qr-selected-amount {
    margin-top: 18px;
    padding: 11px 15px;
    border-radius: 10px;
    background: #eaf6fd;
    color: #102a43;
    font-size: 13px;
    line-height: 1.5;
}

.qr-selected-amount strong {
    color: #0875b8;
}

.qr-selected-amount[hidden] {
    display: none;
}
@media (max-width: 1100px) {

    .qr-donation-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .qr-donation-section {
        padding: 70px 0;
    }

    .qr-code-card {
        padding: 25px;
    }

    .donation-qr {
        width: 100%;
        max-width: 330px;
    }

}