:root {
    --primary: #ffcc00;      /* Yellow */
    --secondary: #1a2a6c;    /* Deep blue */
    --accent: #f1faee;
    --light: #e5e7eb;
    --dark: #111827;
    --text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Deep professional dark-blue look */
    background:
        radial-gradient(circle at top left, #1d4ed8 0, #020617 40%, transparent 65%),
        radial-gradient(circle at bottom right, #0ea5e9 0, #020617 45%, #000 100%);
    overflow-x: hidden;
    min-height: 100vh;
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.ksa-header {
    width: 100%;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: linear-gradient(
        to bottom,
        rgba(15,23,42,0.92),
        rgba(15,23,42,0.7),
        transparent
    );
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.9rem;
    color: var(--primary);
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.logo span {
    color: var(--primary);
}

/* Navigation */
#mainNavList {
    display: flex;
    list-style: none;
    gap: 26px;
}

#mainNavList a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

#mainNavList a:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.6rem;
    color: var(--white);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 6px 20px rgba(0,0,0,0.55);
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 28px;
}

.hero-buttons .btn {
    margin-right: 12px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 11px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

/* 3D Scene */
.scene-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.scene {
    width: 360px;
    height: 360px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s infinite linear;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ===== Generic section styling ===== */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 40px;
    color: var(--white);
    text-shadow: 0 6px 18px rgba(0,0,0,0.5);
    position: relative;
}

section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    border-radius: 999px;
    margin: 12px auto 0;
    background: var(--primary);
}

/* ===== ABOUT ===== */
.about {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 22px;
}

.about .inner {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 30px 24px 40px;
}

.about-text {
    flex: 1;
    color: #f9fafb;
    font-size: 0.98rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0,0,0,0.4);
}

.about-image img {
    width: 100%;
    display: block;
}


/* ===== SCHEDULE ===== */
.schedule {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
}

.schedule-table {
    overflow-x: auto;
    margin-top: 30px;
}

.schedule-table-clean {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.schedule-table-clean thead {
    background: rgba(26, 42, 108, 0.7);
}

.schedule-table-clean th {
    padding: 15px;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
}

.schedule-table-clean td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.schedule-table-clean tr:hover {
    background: rgba(255, 204, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #a8dadc;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    background: linear-gradient(135deg, #0a1a5e 0%, #1a2a6c 30%, #2a3a8c 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #00b4d8, var(--primary));
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.support-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #ffdd44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1a2a6c;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.card-title {
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.card-description {
    color: #555;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* DONATION CARD SPECIFIC */
.donation-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2a6c;
    background: linear-gradient(135deg, var(--primary), #ffdd44);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* DONATION SIMPLE STYLES */
.donation-simple {
    margin-top: 30px;
    text-align: center;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #1a5fb4, #3584e4, #62a0ea);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(26, 95, 180, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    z-index: 1;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0c4da2, #1a5fb4, #3584e4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.donate-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #1a5fb4, #3584e4, #62a0ea, #99c1f1);
    border-radius: 52px;
    z-index: -2;
    opacity: 0.7;
    filter: blur(5px);
    animation: border-glow 3s infinite alternate;
}

.donate-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(26, 95, 180, 0.6), 
                0 0 60px rgba(53, 132, 228, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #0c4da2, #1a5fb4, #3584e4);
}

.donate-btn:hover::before {
    opacity: 1;
}

.donate-btn:hover .btn-arrow {
    transform: translateX(10px) rotate(360deg);
    opacity: 1;
}

.donate-btn:active {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, #0c4da2, #1a5fb4);
}

.donate-btn i {
    font-size: 1.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    color: #ffcc00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-text {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
    color: #ffcc00;
}

.donation-note {
    margin-top: 15px;
    color: #a8dadc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.donation-note i {
    color: #ffcc00;
}

/* VOLUNTEER CARD SPECIFIC */
.volunteer-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a2a6c;
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary);
}

.volunteer-roles h4 {
    color: #1a2a6c;
    text-align: center;
    margin: 25px 0 15px;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.role-tag {
    background: rgba(26, 42, 108, 0.1);
    color: #1a2a6c;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(26, 42, 108, 0.2);
    transition: all 0.3s ease;
}

.role-tag:hover {
    background: linear-gradient(135deg, var(--primary), #ffdd44);
    transform: translateY(-2px);
}

.volunteer-cta {
    text-align: center;
    margin-top: 30px;
}

.volunteer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a2a6c, #2a3a8c);
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 42, 108, 0.3);
}

.volunteer-btn:hover {
    background: linear-gradient(135deg, #2a3a8c, #3a4a9c);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.4);
}

.volunteer-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.volunteer-note i {
    color: var(--primary);
}

/* CORPORATE PARTNERSHIP */
.corporate-partnership {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.partnership-content {
    flex: 1;
}

.partnership-content h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.partnership-content p {
    color: #a8dadc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partnership-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partnership-btn:hover {
    background: white;
    color: #1a2a6c;
    border-color: white;
    transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact {
    padding-bottom: 90px;
}

.contact .inner {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1 1 260px;
    background: rgba(15,23,42,0.92);
    border-radius: 18px;
    padding: 24px 22px 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.contact h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display:block;
    font-size:0.9rem;
    margin-bottom:4px;
}

.form-control {
    width:100%;
    padding: 10px 12px;
    border-radius:10px;
    border:none;
    outline:none;
    font-size:0.9rem;
    background:rgba(15,23,42,0.9);
    color:#f9fafb;
    box-shadow:0 0 0 1px rgba(148,163,184,0.6);
}

.form-control:focus {
    box-shadow:0 0 0 2px rgba(250,204,21,0.7);
}

textarea.form-control {
    min-height:130px;
    resize:vertical;
}

/* ===== FOOTER ===== */
.ksa-footer {
    margin-top: 80px;
    padding-top: 60px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

/* LOGO */
.footer-logo {
    text-align: left;
}

.footer-logo-icon {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: inline-flex;
    animation: float 3s ease-in-out infinite;
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--light);
    font-size: 0.95rem;
    max-width: 320px;
    line-height: 1.5;
}

/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
    margin-top: 6px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light);
    font-size: 0.92rem;
    text-decoration: none;
    transition: 0.25s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
    margin-bottom: 10px;
    color: var(--light);
    font-size: 0.92rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #007bff;
    text-decoration: underline;
    transform: translateX(5px);
}

/* SOCIAL ICONS */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}

/* BOTTOM COPYRIGHT BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    padding: 18px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    background: rgba(15, 23, 42, 0.65);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes rotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.pulse-animation {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(26, 95, 180, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(26, 95, 180, 0.6), 
                    0 0 50px rgba(53, 132, 228, 0.3);
    }
}

@keyframes border-glow {
    0% { opacity: 0.5; filter: blur(5px); }
    100% { opacity: 0.8; filter: blur(8px); }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animation="zoom-in"] {
    transform: scale(0.9);
}

[data-animation="zoom-in"].visible {
    transform: scale(1);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets & small laptops */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .about .inner {
        flex-direction: column;
        padding: 24px 18px 32px;
    }

    .about-text,
    .about-image {
        flex: 1 1 100%;
    }

    .about-image {
        margin-top: 18px;
    }

    .support-cards {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Phones */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .scene {
        width: 260px;
        height: 260px;
    }

    .about {
        border-radius: 18px;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .about .btn {
        width: 100%;
        text-align: center;
    }

    .support-section {
        padding: 60px 20px;
    }

    .support-card {
        padding: 25px;
    }

    .corporate-partnership {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .donation-stats {
        flex-direction: column;
        gap: 20px;
    }

    .volunteer-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .schedule {
        padding: 30px 20px;
        margin: 40px 0;
    }

    /* Mobile navigation */
    .mobile-menu {
        display: block;
        font-size: 1.8rem;
        color: #fff;
        cursor: pointer;
        padding: 4px 8px;
        z-index: 100;
    }

    #mainNavList {
        position: fixed;
        top: 75px;
        right: -260px;
        width: 240px;
        height: calc(100vh - 75px);
        background: rgba(15,23,42,0.96);
        backdrop-filter: blur(14px);
        border-left: 1px solid rgba(255,255,255,0.15);
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 24px 18px;
        transition: right 0.35s ease;
    }

    #mainNavList.active {
        right: 0;
    }

    #mainNavList a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 999px;
    }

    .logo-image {
        max-width: 180px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .scene {
        width: 220px;
        height: 220px;
    }

    .support-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .support-card {
        padding: 20px;
        border-radius: 15px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .role-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .volunteer-btn,
    .partnership-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .corporate-partnership {
        padding: 25px 20px;
    }

    .partnership-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .donate-btn {
        padding: 16px 25px;
        font-size: 1rem;
        gap: 12px;
        min-width: 180px;
        border-width: 2px;
    }

    .btn-text {
        font-size: 1rem;
    }

    .donation-note {
        font-size: 0.85rem;
    }

    .logo-image {
        max-width: 150px;
    }
}

/* Very small phones */
@media (max-width: 375px) {
    .logo-image {
        max-width: 130px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .scene {
        width: 200px;
        height: 200px;
    }
}
/* Add these styles */
.lazyload { opacity: 0; }
.lazyloaded { opacity: 1; transition: opacity 0.3s; }

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; }
}