:root {
    --p: #ff8a0d;
    --ps: #fff4e6;
    --pg: linear-gradient(135deg, #ff8a0d 0%, #ffae42 100%);
    --s: #0f1c13;
    --a: #4ade80;
    --bl: #fafafa;
    --td: #111827;
    --tm: #4b5563;
    --gl: rgba(255, 255, 255, 0.8);
    --tp: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    --fh: 'Tiro Devanagari Hindi', serif;
    --fd: 'Outfit', sans-serif;
    --fb: 'Lexend', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--fb);
    background-color: var(--bl);
    color: var(--td);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--fd);
    font-weight: 800;
}

html {
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--gl);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 44px;
    border-radius: 10px;
}

.logo h1 {
    font-size: 1.1rem;
    color: var(--s);
}

.nav-links {
    display: none;
}

.btn-donate {
    background: var(--pg);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(255, 138, 13, 0.4);
}

.hero {
    padding: 120px 5% 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top, #fff5e6 0%, #fff 70%);
}

.badge {
    padding: 8px 16px;
    background: var(--ps);
    color: var(--p);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero h2 {
    font-size: 2.8rem;
    font-family: var(--fh);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 span {
    color: var(--p);
}

blockquote {
    max-width: 600px;
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--fh);
    color: var(--tm);
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-p {
    background: var(--s);
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
}

.btn-s {
    background: white;
    color: var(--td);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e5e7eb;
}

.hero-img-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    z-index: 2;
    position: relative;
    transform-origin: center center;
    will-change: transform;
}

.hero-decor {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: var(--pg);
    opacity: 0.1;
    filter: blur(60px);
    border-radius: 50%;
}

.features {
    padding: 80px 5%;
}

.s-head {
    text-align: center;
    margin-bottom: 60px;
}

.s-head h3 {
    font-size: 2.2rem;
    font-family: var(--fh);
    margin-bottom: 16px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform-origin: center top;
    will-change: transform;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: var(--ps);
    color: var(--p);
    border-radius: 18px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.stats-grid {
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-num {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--fd);
    color: var(--s);
    line-height: 1;
}

.stat-symbol {
    font-size: 2.5rem;
    color: var(--p);
    font-weight: 800;
    margin-left: 5px;
}

.feat-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-family: var(--fb);
    font-size: 0.95rem;
}

.contact-form button {
    background: var(--p);
    color: white;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: var(--tp);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 138, 13, 0.2);
}

.routine {
    padding: 80px 5%;
    background: white;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--ps);
}

.t-item {
    position: relative;
    margin-bottom: 40px;
}

.t-item::after {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--p);
    border-radius: 50%;
    border: 3px solid white;
}

.t-time {
    color: var(--p);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
}

.t-item h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.gallery {
    padding: 80px 5%;
    background: var(--s);
    color: white;
}

.gal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.v-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.v-thumb {
    aspect-ratio: 16/10;
    width: 100%;
    object-fit: cover;
}

.v-card h5 {
    padding: 20px;
    font-size: 1.1rem;
}

.footer {
    padding: 80px 5% 40px;
    background: white;
}

.f-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    nav {
        padding: 0 10%;
    }

    .nav-links {
        display: flex;
        gap: 40px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--tm);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 160px 10%;
    }

    .hero-content {
        max-width: 600px;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    .hero h2 {
        font-size: 4.5rem;
    }

    blockquote {
        padding: 0;
        border-left: 4px solid var(--p);
        padding-left: 20px;
        margin-left: 0;
    }

    .hero-btns {
        margin-bottom: 0;
    }

    .feat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .features {
        padding: 120px 10%;
    }

    .timeline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        padding-left: 0;
    }

    .timeline::before {
        left: 0;
        top: 20px;
        width: 100%;
        height: 2px;
    }

    .t-item {
        margin-bottom: 0;
    }

    .t-item::after {
        left: 0;
        top: 16px;
    }

    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery {
        padding: 120px 10%;
        border-radius: 60px 60px 0 0;
    }

    .f-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer {
        padding: 120px 10% 60px;
    }
}