:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.hero-section {
    background: linear-gradient(to bottom, var(--orange-50), var(--orange-100));
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    background: linear-gradient(to bottom, rgba(255, 237, 213, 0.5), transparent);
}

.spinning-lotus {
    animation: spin 20s linear infinite;
    color: var(--orange-800);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.opacity-10 {
    opacity: 0.1;
}

.z-10 {
    z-index: 10;
}

.text-orange-800 {
    color: var(--orange-800);
}

.text-orange-900 {
    color: var(--orange-900);
}

.bg-orange-50 {
    background-color: var(--orange-50);
}

.bg-orange-100 {
    background-color: var(--orange-100);
}

.btn-orange {
    background-color: var(--orange-600);
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--orange-700);
    color: white;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    color: var(--orange-600);
}

.benefit-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    background-color: var(--orange-100);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    color: var(--orange-600);
}

.benefit-text {
    color: #4b5563;
    margin: 0;
}



.audio-controls {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #fff;
            padding: 10px 15px;
            border-radius: 50px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            z-index: 9999; /* Ensure it's above all other elements */
}

#audioButton {
            background: #ff9800;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
}

/* Mission & Support Sections */
.mission-section, .support-section {
    padding: 80px 0;
}

.mission-section {
    background-color: #FFF7ED; /* Light orange background */
}

.support-section {
    background-color: #ffffff; /* White background */
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #b45309; /* Dark orange */
    text-align: center;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.section-subtitle {
    font-size: 22px;
    color: #374151; /* Dark gray */
    text-align: center;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.section-list {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: #4B5563; /* Medium gray */
    line-height: 1.8;
    font-family: "Inter", sans-serif;
}

.section-list li {
    list-style: none;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.section-list li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: #D97706; /* Orange */
    font-size: 18px;
}

.support-button {
    background-color: #D97706; /* Orange */
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    margin-top: 20px;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

.support-button:hover {
    background-color: #B45309; /* Darker orange */
}


.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 800px;
    margin: auto;
}

.footer-top h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer p, .footer a {
    font-size: 16px;
    color: #ddd;
    text-decoration: none;
}

.footer a:hover {
    color: #facc15;
    transition: 0.3s;
}

.footer-social {
    margin: 15px 0;
}

.footer-social a {
    margin: 0 10px;
    font-size: 16px;
}

.footer-cta {
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #facc15;
    color: #1a1a1a;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #ffcc33;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    margin: 0 10px;
    font-size: 16px;
}

.footer-bottom {
    font-size: 14px;
    margin-top: 20px;
}

@font-face {
    font-family: 'GitaDharmic';
    src: url('fonts/Gitadharmic.ttf') format('truetype');
}

.header-container {
    background: linear-gradient(to bottom, var(--orange-50), var(--orange-100));
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-wrapper {
    background: white; /* White pill shape */
    padding: 15px 40px;
    border-radius: 50px; /* Creates the pill shape */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for elevation */
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-brand {
    font-family: 'GitaDharmic', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #ff9933; /* Saffron color */
}

.brand-icon {
    width: 40px;
    height: 40px;
    fill: #ff9933;
}


        :root {
            --primary: #2D3250;
            --accent: #424769;
            --text: #333;
            --bg: #F6F6F6;
            --white: #ffffff;
            --border: #E8E8E8;
        }

        .popup-container {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 460px;
            margin: auto;  /* Centers the form */
            animation: slideUp .3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            text-align: center;
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .subtitle {
            text-align: center;
            color: #666;
            font-size: .95rem;
            margin-bottom: 1.5rem;
        }

        .input-group {
            position: relative;
            margin-bottom: 1rem;
        }

        .input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            opacity: 0.6;
        }

        input, select, textarea {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--white);
            font-size: .95rem;
            transition: 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45, 50, 80, 0.1);
        }

        textarea {
            resize: none;
            height: 80px;
        }

        .signup-btn {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
        }

        .signup-btn:hover {
            background: var(--accent);
        }

        .success-message {
            text-align: center;
            color: #166534;
            background: #DCFCE7;
            padding: 10px;
            border-radius: 6px;
            font-size: 1rem;
            display: none;
        }


        /* 📱 Mobile Optimization */
        @media (max-width: 480px) {
            .popup-container {
                max-width: 90%; /* Prevents sticking to the right */
                padding: 1.5rem;
                margin: 10px auto; /* Adds spacing from left & right */
            }

            h1 {
                font-size: 1.5rem;
            }

            input, select, textarea {
                font-size: 0.7rem;
                padding: 10px;
            }

            .signup-btn {
                padding: 10px;
            }
        }

        /* 📱 Mobile-specific adjustments */
        @media (max-width: 480px) {
            .popup-container {
                max-width: 90%;
                padding: 1.5rem;
                margin: 10px auto;
            }

            .input-group {
                display: flex;
                align-items: center;
            }

            .input-icon {
                width: 18px; /* Reduce icon size */
                height: 18px;
                left: 8px; /* Adjust positioning */
            }

            input {
                font-size: 0.85rem;
                padding: 10px 10px 10px 2.8rem; /* Adjust for smaller screens */
            }
        }