:root {
    --primary: #FF9933;
    /* Saffron */
    --secondary: #FFCC00;
    /* Turmeric */
    --accent: #006699;
    /* Peacock Blue */
    --accent-pink: #E040FB;
    /* Lotus Pink */
    --bg-cream: #FFF8E1;
    --text-dark: #3E2723;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 16px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

.btn-primary:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.6);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.3rem;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #DFA01E;
    /* Ochre */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.announcement-bar i {
    margin-right: 8px;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    position: fixed;
    top: -100px;
    /* Initially hidden above viewport */
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: top 0.4s ease-in-out;
}

.navbar.visible {
    top: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.navbar .btn-primary {
    padding: 8px 24px;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: 20px 20px 0 var(--secondary);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(180deg, #FF8C00 0%, #FF9933 60%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: none;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #E6A83C, #FF9933, #FF6B3D);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Vision Section */
.vision-section {
    background-color: rgba(255, 255, 255, 0.8);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.feature-box {
    background: linear-gradient(135deg, var(--accent-pink), #9C27B0);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(224, 64, 251, 0.3);
}

.feature-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    display: inline-block;
}

/* Why Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border-bottom: 5px solid var(--primary);
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Impact Section */
.impact-section {
    background-color: var(--accent);
    color: var(--white);
}

.impact-section .section-title {
    color: var(--white);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.impact-item .icon {
    display: block;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    background-color: var(--white);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -30px;
    margin-bottom: 50px;
    color: #666;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FF9966 0%, #FF7EB3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon i {
    font-size: 2.5rem;
    color: white;
}

.team-logo {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Donate Section */
.donate-section {
    padding-bottom: 120px;
}

.donate-card {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--secondary);
}

.donate-card h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.progress-container {
    background-color: #eee;
    height: 30px;
    border-radius: 15px;
    margin: 30px 0 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    height: 100%;
    border-radius: 15px;
    transition: width 1.5s ease-out;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.reward-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 153, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 153, 51, 0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #FF9966 0%, #FF8E72 25%, #FF7EB3 60%, #FF6B95 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 80px;
}

.footer-links h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--white);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        flex-direction: column;
        gap: 30px;
    }

    .partner-text {
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .donate-card {
        padding: 30px;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.icon-orange {
    background-color: #FFF3E0;
    color: #FF9800;
}

.icon-green {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.icon-yellow {
    background-color: #FFFDE7;
    color: #FBC02D;
}

/* Gradient Icon Styles - Orange to Pink Theme */
.icon-gradient-1 {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0CC 100%);
    color: #FF8B3D;
}

.icon-gradient-2 {
    background: linear-gradient(135deg, #FFE4E6 0%, #FFD6DB 100%);
    color: #FF6B7A;
}

.icon-gradient-3 {
    background: linear-gradient(135deg, #FFECD2 0%, #FCB69F 30%);
    color: #E85D3F;
}

.icon-gradient-4 {
    background: linear-gradient(135deg, #FFE8F0 0%, #FFC8DC 100%);
    color: #FF7EB3;
}

.icon-gradient-5 {
    background: linear-gradient(135deg, #FFF0E6 0%, #FFD6C4 100%);
    color: #FF9966;
}

.icon-gradient-6 {
    background: linear-gradient(135deg, #FFE6F0 0%, #FFCCE0 100%);
    color: #FF6B95;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Rewards Section */
.rewards-section {
    background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 50%, #FFF5EE 100%);
    padding: 80px 0;
}

.rewards-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.rewards-icon {
    flex-shrink: 0;
}

.trophy-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 30%, #FF8C00 60%, #FF6B3D 100%);
    border-radius: 50%;
    box-shadow:
        0 10px 40px rgba(255, 165, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 -5px 20px rgba(0, 0, 0, 0.1),
        inset 0 5px 20px rgba(255, 255, 255, 0.4);
    animation: trophy-float 3s ease-in-out infinite;
}

.trophy-wrapper i {
    font-size: 5rem;
    color: white;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.trophy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: trophy-glow 2s ease-in-out infinite alternate;
}

@keyframes trophy-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes trophy-glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.rewards-text {
    flex: 1;
}

.rewards-text h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    background: linear-gradient(180deg, #FF8C00 0%, #FF9933 60%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.rewards-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF9966, #FF6B95);
    margin-top: 15px;
    border-radius: 2px;
}

.rewards-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 15px;
}

.rewards-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.rewards-vision {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(255, 153, 102, 0.08), transparent);
}

.rewards-cta {
    font-size: 1.25rem;
    color: #1a1a1a;
}

.rewards-cta strong {
    color: var(--primary);
    font-size: 1.35rem;
}

/* Responsive for Rewards */
@media (max-width: 768px) {
    .rewards-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .trophy-wrapper {
        width: 150px;
        height: 150px;
    }

    .trophy-wrapper i {
        font-size: 3.5rem;
    }

    .trophy-glow {
        width: 170px;
        height: 170px;
    }

    .rewards-text h2 {
        font-size: 2.2rem;
    }

    .rewards-text h2::after {
        margin: 15px auto 0;
    }

    .rewards-vision {
        border-left: none;
        border-top: 4px solid var(--primary);
        padding-left: 0;
        padding-top: 20px;
    }
}

/* Vision Section */
.vision-section {
    background-color: #FFF3E0;
    background-image:
        linear-gradient(135deg, rgba(255, 183, 77, 0.9) 0%, rgba(255, 224, 130, 0.8) 100%),
        url('../assets/images/bg_pattern.png');
    background-blend-mode: overlay;
    background-size: 400px;
    background-repeat: repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vision-section .text-block p {
    font-size: 1.2rem;
    color: #4E342E;
    /* Dark brown for contrast */
    line-height: 1.8;
}

.vision-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.vision-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #D84315;
    /* Deep Orange */
    box-shadow: 0 4px 10px rgba(216, 67, 21, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.vision-icon-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

.vision-icon-item i {
    font-size: 1.2rem;
    color: #FF6F00;
}

.vision-section .feature-box {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #FFCC80;
    box-shadow: 0 15px 40px rgba(255, 111, 0, 0.15);
    padding: 40px;
    border-radius: 30px;
}

.vision-section .feature-box h3 {
    color: #D84315;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vision-section .feature-box p {
    color: #4E342E;
}

.vision-section .feature-box .highlight {
    background: linear-gradient(135deg, #FF6F00, #FFAB00);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 700;
}

.vision-section .box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F00, #FFAB00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F9F9 50%, #F5F5F5 100%);
    /* Light background as seen in image */
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.faq-header h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #FF8C00 0%, #FF9933 60%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Search Bar */
.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s;
}

.faq-search input:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 50px;
    /* Rounded pill shape */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-radius: 20px;
    /* Change shape when expanded */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-orange-light {
    background-color: #FFF3E0;
    color: #FF9800;
}

.icon-green-light {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.icon-blue-light {
    background-color: #E3F2FD;
    color: #2196F3;
}

.icon-red-light {
    background-color: #FFEBEE;
    color: #F44336;
}

.faq-question span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.toggle-icon {
    color: #999;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-answer p {
    padding: 0 0 20px 60px;
    /* Indent to align with text */
    color: #666;
    line-height: 1.6;
}

/* Contact Card */
.faq-contact-card {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.faq-contact-card p {
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contribution Impact Section */
.contribution-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5EB 0%, #FFF9F5 50%, #FFFFFF 100%);
}

.contribution-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contribution-header h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FF8C00 0%, #FF9933 60%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.contribution-header h2 span {
    color: var(--primary);
    display: block;
}

.contribution-header p {
    color: #666;
    font-size: 1.1rem;
}

.contribution-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left Card - Funding Stats */
.funding-card {
    flex: 1;
    min-width: 350px;
    background: var(--white);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.circular-progress {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 40px;
}

.circular-progress svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circular-progress circle {
    fill: none;
    stroke-width: 25;
    stroke-linecap: round;
}

.progress-bg {
    stroke: #f0f0f0;
}

.progress-value {
    stroke: var(--primary);
    stroke-dasharray: 628;
    /* 2 * PI * 100 */
    stroke-dashoffset: 628;
    transition: stroke-dashoffset 2s ease-in-out;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-text h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 4rem;
    margin: 0;
    line-height: 1;
    color: #1a1a1a;
}

.progress-text span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.donate-btn-large {
    background: linear-gradient(135deg, #FF9966 0%, #FF7EB3 100%);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 126, 179, 0.4);
    transition: all 0.3s ease;
    margin-top: 0;
    /* Adjusted from 20px since we moved it */
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.5px;
}

.donate-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.6);
}

.stats-row {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.stat-box {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 20px;
    flex: 1;
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.stat-box h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

.backers-box {
    background: #F9F9F9;
    padding: 20px 30px;
    border-radius: 20px;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.backers-box h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
}

.backers-icon {
    width: 40px;
    height: 40px;
    background: #FFE0B2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Right Grid - Impact Cards */
.impact-grid-new {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.impact-card-new {
    background: var(--white);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card-new:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.impact-card-new::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.5;
}

.card-1::before {
    background: #FFE0B2;
}

.card-2::before {
    background: #E3F2FD;
}

.card-3::before {
    background: #E8F5E9;
}

.card-4::before {
    background: #F3E5F5;
}

.impact-icon-new {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-bg-1 {
    background: #FFF3E0;
    color: #FF9800;
}

.icon-bg-2 {
    background: #E3F2FD;
    color: #2196F3;
}

.icon-bg-3 {
    background: #E8F5E9;
    color: #4CAF50;
}

.icon-bg-4 {
    background: #F3E5F5;
    color: #9C27B0;
}

.impact-card-new h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.impact-card-new p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .contribution-container {
        flex-direction: column;
    }

    .funding-card {
        width: 100%;
    }
}

/* New Hero Section */
.hero-new {
    padding: 40px 0 80px;
    text-align: center;
}

.hero-logo-area {
    margin-bottom: 50px;
}

.hero-logo {
    max-width: 300px;
    /* Adjust based on actual logo aspect ratio */
    height: auto;
    margin-bottom: 10px;
}

.hero-tagline {
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-top: 10px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Video takes slightly more space or equal */
    gap: 50px;
    align-items: center;
    text-align: left;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Right Content */
.hero-content-new {
    padding: 10px;
}

.hero-description {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Stats Card */
.hero-stats-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.raised-info {
    margin-bottom: 15px;
}

.raised-info .amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.raised-info .goal {
    font-size: 0.9rem;
    color: #888;
}

.hero-progress-bar {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.hero-progress-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 5px;
}

/* Donations that passed auto-verification but await owner reconciliation */
.hero-progress-pending {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    background: repeating-linear-gradient(45deg,
            rgba(255, 153, 51, 0.45),
            rgba(255, 153, 51, 0.45) 6px,
            rgba(255, 153, 51, 0.2) 6px,
            rgba(255, 153, 51, 0.2) 12px);
    transition: width 1.5s ease-out;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.hero-meta .percentage {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    position: absolute;
    /* Positioning hack to match image if needed, but flex is safer */
    right: 25px;
    /* Adjust if using absolute */
    top: 95px;
    /* Adjust based on card padding */
}

/* Resetting position for cleaner layout */
.hero-meta {
    position: relative;
}

.hero-meta .percentage {
    position: static;
}

.meta-details {
    display: flex;
    gap: 20px;
}

.meta-details i {
    margin-right: 5px;
    color: #999;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-hero {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero-outline {
    flex: 0.8;
    background: transparent;
    border: 2px solid #ddd;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-logo-area {
        margin-bottom: 30px;
    }
}

/* Hero Updates */
.hero-new {
    background: linear-gradient(135deg, #FFFDF5 0%, #FFF8F0 50%, #FFF5E8 100%);
    position: relative;
    overflow: hidden;
}

.hero-logo {
    max-width: 500px;
    /* Increased from 300px */
}

/* Single Button Adjustment */
.hero-actions {
    justify-content: flex-start;
    /* Align left */
}

.btn-hero {
    flex: none;
    /* Don't stretch */
    min-width: 250px;
}

/* Devanagari Background Letters */
.hero-bg-letters {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-letter {
    position: absolute;
    color: #E8DCC4;
    /* Soft Beige */
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    opacity: 0.6;
    user-select: none;
    will-change: transform;
}

/* Specific positions and sizes for letters */
.letter-1 {
    top: 10%;
    left: 5%;
    font-size: 8rem;
}

.letter-2 {
    top: 20%;
    right: 10%;
    font-size: 10rem;
}

.letter-3 {
    bottom: 15%;
    left: 15%;
    font-size: 6rem;
}

.letter-4 {
    top: 50%;
    right: 5%;
    font-size: 12rem;
}

.letter-5 {
    bottom: 5%;
    right: 30%;
    font-size: 8rem;
}

.letter-6 {
    top: 5%;
    left: 40%;
    font-size: 5rem;
}

/* Progress Bar Animation Class */
.hero-progress-fill {
    width: 0;
    /* Start at 0 */
    transition: width 1.5s ease-out;
}

/* =========================================
   MOBILE OPTIMIZATION OVERRIDES
   ========================================= */

@media (max-width: 900px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-title::after {
        width: 80%;
    }
}

@media (max-width: 768px) {

    /* General Layout */
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
        /* Keep some padding */
    }

    /* Typography Scaling */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 2rem !important;
        margin-bottom: 30px;
    }

    p {
        font-size: 1rem !important;
    }

    /* Navbar */
    .logo img {
        height: 35px;
    }

    .navbar .btn-primary {
        /* On mobile, we might want to hide the header button if it clutters, 
           active hamburger menu has links usually. 
           But let's keep it if space allows or make it smaller */
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero-new {
        padding-top: 100px;
        /* Account for fixed nav */
        padding-bottom: 40px;
        height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-content-new {
        text-align: center;
        padding: 0 10px;
    }

    .hero-tagline {
        font-size: 1.2rem;
        text-align: center;
        margin-top: 10px;
    }

    .hero-logo-area {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-video-wrapper {
        height: 250px;
        /* confine video height on mobile */
    }

    /* Stats Card in Hero */
    .hero-stats-card {
        padding: 20px;
        margin-top: 20px;
    }

    .raised-info .amount {
        font-size: 1.8rem;
    }

    /* Vision Section */
    .content-grid {
        grid-template-columns: 1fr;
        /* Stack vision content */
        gap: 40px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack features */
    }

    /* Rewards Section */
    .rewards-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .trophy-wrapper {
        margin: 0 auto;
        /* Center trophy */
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    /* Extra Small Devices */
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .announcement-bar {
        font-size: 0.75rem;
        padding: 10px 5px;
    }
}