        /* Reset and Base Styles */
        :root {
            --primary: #6c5ce7;
            --primary-dark: #5649c0;
            --secondary: #00cec9;
            --dark: #2d3436;
            --light: #f5f6fa;
            --gold: #fdcb6e;
            --silver: #b2bec3;
            --bronze: #e17055;
            --success: #00b894;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #121212;
            color: var(--light);
            overflow-x: hidden;
            padding-top: 3.5rem; /* For fixed navbar */
        }

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

        /* Premium Navbar with Logo - Improved Alignment */
        .premium-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 0.4rem 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            background: rgba(15, 15, 25, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 2.5rem;
            padding: 0 1rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-shrink: 0;
        }

        .nav-logo-img {
            height: 2rem;
            width: auto;
            border-radius: 4px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 5px rgba(253, 203, 110, 0.3));
        }

        .nav-logo:hover .nav-logo-img {
            transform: scale(1.05);
            filter: drop-shadow(0 0 8px rgba(253, 203, 110, 0.5));
        }

        .nav-logo-text {
            color: var(--gold);
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.8px;
            background: linear-gradient(to right, var(--gold), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-link {
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.85rem;
            text-decoration: none;
            padding: 0.3rem 0.7rem;
            border-radius: 5px;
            transition: all 0.25s ease;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.3), transparent);
            transition: 0.4s;
        }

        .nav-link:hover::before {
            left: 100%;
        }

        .nav-link:hover {
            color: white;
            box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
            border-color: var(--primary);
        }

        .nav-hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 3px;
            padding: 0.5rem;
            margin-right: -0.5rem;
        }

        .hamburger-line {
            width: 20px;
            height: 1.5px;
            background: white;
            transition: all 0.2s ease;
        }

        /* Scrolled State */
        .premium-navbar.scrolled {
            padding: 0.3rem 1.2rem;
            background: rgba(15, 15, 25, 0.85);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 3.3rem;
                left: 0;
                width: 100%;
                background: rgba(15, 15, 25, 0.98);
                flex-direction: column;
                padding: 1rem 0;
                gap: 0.8rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                height: auto;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-link {
                width: 90%;
                margin: 0 auto;
                padding: 0.7rem;
                text-align: center;
                border-radius: 6px;
                background: rgba(108, 92, 231, 0.1);
                border: 1px solid rgba(108, 92, 231, 0.2);
                font-size: 0.95rem;
            }

            .nav-link:hover {
                background: rgba(108, 92, 231, 0.2);
            }

            .nav-hamburger {
                display: flex;
            }
        }

        /* Hero Section - Compact with Donation Form */
        .donation-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(44, 44, 84, 0.9) 0%, rgba(33, 33, 63, 0.9) 100%), 
                        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
            padding: 2rem;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--gold), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .sparkles {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: white;
            opacity: 0;
            animation: sparkle 3s infinite;
        }

        @keyframes sparkle {
            0% { opacity: 0; transform: scale(0); }
            50% { opacity: 0.8; transform: scale(1); }
            100% { opacity: 0; transform: scale(0); }
        }

        /* Premium Luxury Donation Form */
        .custom-donation {
            max-width: 792px;
            margin: 2rem auto;
            padding: 3.3rem;
            background: linear-gradient(135deg, 
                        rgba(30, 30, 50, 0.85) 0%, 
                        rgba(20, 20, 40, 0.9) 100%);
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                        0 0 0 1px rgba(108, 92, 231, 0.1);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .custom-donation:hover {
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3),
                        0 0 0 1px rgba(108, 92, 231, 0.2);
            transform: translateY(-2px);
        }

        .custom-donation h3 {
            text-align: center;
            margin-bottom: 2.4rem;
            color: var(--gold);
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: 0.6px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .custom-donation h3::after {
            content: '';
            display: block;
            width: 72px;
            height: 3px;
            background: linear-gradient(to right, var(--gold), var(--secondary));
            margin: 1.2rem auto 0;
            border-radius: 3px;
        }

        .custom-donation .form-group {
            margin-bottom: 2.4rem;
            position: relative;
        }

        .custom-donation label {
            display: block;
            margin-bottom: 0.96rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.14rem;
            letter-spacing: 0.36px;
        }

        .custom-donation input {
            width: 100%;
            padding: 1.2rem 1.44rem;
            background: rgba(10, 10, 20, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 1.32rem;
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .custom-donation input::placeholder {
            color: rgba(255, 255, 255, 0.3);
            font-weight: 300;
            font-size: 1.2rem;
        }

        .custom-donation input:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(10, 10, 20, 0.6);
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2),
                        inset 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .donate-btn {
            width: 100%;
            padding: 1.32rem;
            background: linear-gradient(135deg, 
                        var(--primary) 0%, 
                        var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.32rem;
            font-weight: 600;
            letter-spacing: 0.6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
            position: relative;
            overflow: hidden;
        }

        .donate-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                        transparent, 
                        rgba(255, 255, 255, 0.1), 
                        transparent);
            transition: 0.5s;
        }

        .donate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
        }

        .donate-btn:hover::before {
            left: 100%;
        }

        /* Enhanced Currency Symbol */
        .custom-donation .form-group::before {
            content: '₹';
            position: absolute;
            left: 1.44rem;
            top: 45%;
            transform: translateY(30%);
            color: var(--gold);
            font-weight: 700;
            font-size: 1.44rem;
            pointer-events: none;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .custom-donation input {
            padding-left: 3rem;
        }

        /* Campaigns Table - Improved for Mobile */
        .donation-section {
            padding: 5rem 2rem;
            background-color: var(--dark);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 1rem auto;
            border-radius: 2px;
        }

        .campaign-table-container {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 3rem auto;
            max-width: 1000px;
        }

        .campaign-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            min-width: 600px; /* Ensures table doesn't get too narrow on mobile */
        }

        .campaign-table th, .campaign-table td {
            padding: 1.2rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .campaign-table th {
            background: rgba(108, 92, 231, 0.2);
            font-weight: 600;
            color: var(--secondary);
            position: sticky;
            top: 0;
        }

        .campaign-table tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .campaign-table .donate-link {
            color: var(--primary);
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 5px;
            border: 1px solid rgba(108, 92, 231, 0.2);
        }

        .campaign-table .donate-link:hover {
            color: white;
            background: rgba(108, 92, 231, 0.3);
            text-decoration: none;
        }

        .campaign-amount {
            font-weight: 600;
            color: var(--gold);
            white-space: nowrap;
        }

        /* Donation Tiers Section */
        .donation-tiers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tier-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            width: 300px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .tier-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--primary);
        }

        .tier-card.gold {
            border-top: 4px solid var(--gold);
        }

        .tier-card.silver {
            border-top: 4px solid var(--silver);
        }

        .tier-card.bronze {
            border-top: 4px solid var(--bronze);
        }

        .tier-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }

        .tier-card .amount {
            font-size: 2rem;
            font-weight: bold;
            margin: 1.5rem 0;
            color: var(--secondary);
        }

        .tier-card .benefits {
            list-style-type: none;
            margin-bottom: 2rem;
        }

        .tier-card .benefits li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .tier-card .benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
        }

        /* Premangan Special Section */
        .premangan-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(44, 44, 84, 0.9) 0%, rgba(33, 33, 63, 0.9) 100%);
            text-align: center;
        }

        .premangan-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .premangan-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(253, 203, 110, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: 0;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .premangan-card h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            position: relative;
            z-index: 1;
        }

        .premangan-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .premangan-card .highlight {
            color: var(--gold);
            font-weight: bold;
        }

        .premangan-btn {
            background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
            position: relative;
            overflow: hidden;
        }

        .premangan-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.1);
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            from { transform: rotate(30deg) translate(-30%, -30%); }
            to { transform: rotate(30deg) translate(30%, 30%); }
        }

        
.bank-transfer-section {
    padding: 5rem 2rem;
    background-color: var(--dark);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.bank-transfer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.qr-code-container {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
}

.qr-code {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bank-details {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    text-align: left;
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive fixes for mobile */
@media (max-width: 768px) {
    .bank-transfer-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .bank-details {
        text-align: center;
        width: 100%;
        min-width: auto;
    }
    
    .bank-details p {
        text-align: left;
        padding-right: 2rem;
    }
    
    .qr-code {
        width: 200px;
        height: 200px;
    }
}

        .bank-details h3 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .bank-details p {
            margin-bottom: 1rem;
            line-height: 1.6;
            position: relative;
            padding-right: 2rem;
        }

        .bank-details strong {
            color: var(--secondary);
            font-weight: 600;
        }

        .copy-btn {
            position: absolute;
            right: 0;
            top: 0;
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--secondary);
            width: 24px;
            height: 24px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .copy-btn:hover {
            background: rgba(255,255,255,0.2);
            color: white;
        }

        .copy-btn i {
            font-size: 0.8rem;
        }

        .copy-tooltip {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
            white-space: nowrap;
        }

        .copy-btn:hover .copy-tooltip {
            opacity: 1;
        }

        /* 80G Tax Benefits Section */
        .tax-benefits {
            padding: 5rem 2rem;
            background-color: var(--dark);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .benefit-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            margin-bottom: 1rem;
            color: var(--gold);
        }

        /* Certifications Section */
        .certifications {
            padding: 5rem 2rem;
            background-color: var(--dark);
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .cert-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: var(--primary);
        }

        .cert-card i {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .cert-card h3 {
            margin-bottom: 0.5rem;
        }

        .cert-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(44, 44, 84, 0.9) 0%, rgba(33, 33, 63, 0.9) 100%);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--gold), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Buttons */
        .donate-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .donate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            display: inline-block;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        /* Premium Modal Design */
        .premium-modal {
            background: #1a1a2e;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3),
                        0 0 0 1px rgba(108, 92, 231, 0.2);
            padding: 2.5rem;
            max-width: 500px;
            color: #f8f9fa;
            margin: 2rem;
            max-height: 90vh;
            overflow-y: auto;
        }

        .premium-modal .modal-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .premium-modal .icon-circle {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
        }

        .premium-modal .icon-circle i {
            font-size: 2.5rem;
            color: white;
        }

        .premium-modal h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: white;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .premium-modal .modal-subtitle {
            color: #adb5bd;
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Premium Form Styles */
        .premium-form .form-group {
            margin-bottom: 1.5rem;
        }

        .premium-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: #dee2e6;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .premium-form input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .premium-form input::placeholder {
            color: rgba(255,255,255,0.3);
        }

        .premium-form input:focus {
            background: rgba(255,255,255,0.08);
            border-color: #6c5ce7;
            outline: none;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }

        /* Premium Button */
        .modal-submit-btn {
            background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
            color: white;
            border: none;
            padding: 1.1rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            letter-spacing: 0.5px;
        }

        .modal-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
        }

        /* Close Button */
        .close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.5rem;
            color: rgba(255,255,255,0.6);
            transition: all 0.3s ease;
            cursor: pointer;
            background: rgba(255,255,255,0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .close-modal:hover {
            color: white;
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }

        /* Premangan Field Animation */
        #premangan-field {
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Particle Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
        }

        /* Footer Adjustments */
        .prem-footer {
            font-size: 1rem; /* Increased from default */
        }

        .prem-footer p, 
        .prem-footer a, 
        .prem-footer span {
            font-size: 1rem !important; /* Consistent sizing with !important */
        }

        .prem-tagline {
            font-size: 1rem !important; /* Explicitly set with !important */
        }

        .prem-trust-badge span {
            font-size: 0.95rem !important; /* Slightly larger with !important */
        }

        .prem-links-list .prem-link {
            font-size: 1rem !important;
        }

        .prem-contact-item {
            font-size: 1rem !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .tier-card {
                width: 100%;
                max-width: 350px;
            }

            .campaign-table {
                display: block;
                overflow-x: auto;
            }

            .bank-transfer-container {
                flex-direction: column;
                gap: 2rem;
            }

            .bank-details {
                text-align: center;
            }

            .premium-modal {
                margin: 1rem;
                padding: 1.5rem;
            }
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Micro Ripple Effect */
        .ripple {
            width: 12px;
            height: 12px;
            animation: ripple 0.35s ease-out;
        }

        @keyframes ripple {
            to {
                transform: translate(-50%, -50%) scale(8);
            }
        }


        /* Certification View Buttons */
.view-cert-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(108, 92, 231, 0.2);
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-cert-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 206, 201, 0.2), transparent);
    transition: 0.5s;
}

.view-cert-btn:hover {
    background: rgba(0, 206, 201, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.view-cert-btn:hover::before {
    left: 100%;
}

/* Adjust cert card spacing */
.cert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
}

.cert-card h3 {
    margin: 0.5rem 0;
}

.cert-card p {
    margin-bottom: 1rem;
    text-align: center;
    flex-grow: 1;
}

/* Certificate Modal Specific Styles */
.cert-modal-content {
    padding: 1rem;
    text-align: center;
}

.cert-modal-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.cert-modal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cert-pdf-preview {
    width: 100%;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed rgba(255,255,255,0.2);
}

.cert-pdf-preview i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.cert-pdf-preview span {
    color: rgba(255,255,255,0.7);
}

/* Certificate Modal Specific Styles */
.cert-modal-content {
    padding: 1rem;
    text-align: center;
}

.cert-modal-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.cert-modal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#cert-pdf-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
}

/* Enhanced Certificate Modal */
.cert-modal-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cert-modal-content h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.cert-modal-content h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--secondary));
    margin: 1rem auto;
    border-radius: 3px;
}

.cert-modal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.modal-footer {
    margin-top: 1rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

#cert-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#cert-pdf-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

/* Certificate Details Grid */
.cert-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.cert-detail-item {
    background: rgba(255,255,255,0.05);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.cert-detail-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cert-detail-item span {
    color: white;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Mobile Compatibility Improvements */
@media (max-width: 768px) {
    /* Custom Donation Box Improvements */
    .custom-donation {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
        border-radius: 12px;
        width: 90%;
        max-width: 100%;
    }

    .custom-donation h3 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .custom-donation h3::after {
        width: 50px;
        margin: 0.8rem auto 0;
    }

    .custom-donation .form-group {
        margin-bottom: 1.8rem;
    }

    .custom-donation label {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .custom-donation input {
        padding: 1rem 1rem 1rem 2.8rem;
        font-size: 1.1rem;
    }

    .custom-donation .form-group::before {
        left: 1rem;
        font-size: 1.2rem;
        top: 55%;
    }

    .donate-btn {
        padding: 1.1rem;
        font-size: 1.1rem;
    }

    /* Premangan Section Improvements */
    .premangan-section {
        padding: 3rem 1rem;
    }

    .premangan-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        width: auto;
    }

    .premangan-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .premangan-card p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .project-gallery {
        margin: 1rem 0;
    }

    .gallery-container {
        height: 200px;
    }

    .gallery-image {
        max-height: 200px !important;
    }

    .premangan-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Campaigns Table Improvements */
    .campaign-table-container {
        margin: 2rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding: 0 0.5rem;
    }

    .campaign-table {
        min-width: 650px; /* Allow horizontal scrolling on very small devices */
        font-size: 0.9rem;
    }

    .campaign-table th, 
    .campaign-table td {
        padding: 0.8rem 0.6rem;
    }

    .campaign-table th {
        font-size: 0.85rem;
        padding: 0.9rem 0.6rem;
    }

    .campaign-amount {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .donate-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Section title adjustments for mobile */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        padding: 0 1rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .custom-donation {
        padding: 1.5rem 1rem;
        width: 95%;
    }

    .custom-donation h3 {
        font-size: 1.5rem;
    }

    .premangan-card {
        padding: 1.5rem 1rem;
    }

    .premangan-card h2 {
        font-size: 1.5rem;
    }

    .gallery-container {
        height: 180px;
    }

    .gallery-image {
        max-height: 180px !important;
    }

    .campaign-table {
        min-width: 600px;
        font-size: 0.85rem;
    }

    .campaign-table th, 
    .campaign-table td {
        padding: 0.6rem 0.5rem;
    }
}

/* Very small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .custom-donation {
        padding: 1.2rem 0.8rem;
    }

    .custom-donation h3 {
        font-size: 1.3rem;
    }

    .custom-donation input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 1rem;
    }

    .custom-donation .form-group::before {
        left: 0.8rem;
        font-size: 1.1rem;
    }

    .premangan-card {
        padding: 1.2rem 0.8rem;
    }

    .premangan-card h2 {
        font-size: 1.3rem;
    }

    .gallery-container {
        height: 160px;
    }

    .gallery-image {
        max-height: 160px !important;
    }
}

/* Prevent horizontal scrolling on body */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all sections don't exceed viewport width */
.donation-hero,
.donation-section,
.premangan-section,
.bank-transfer-section,
.tax-benefits,
.certifications,
.cta-section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Mobile Compatibility Improvements for Bank Account Details */
@media (max-width: 768px) {
    .bank-transfer-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .bank-details {
        text-align: center;
        width: 100%;
        min-width: auto;
        padding: 1.5rem;
    }
    
    .bank-details p {
        text-align: left;
        padding-right: 2rem;
        position: relative;
        margin-bottom: 1.2rem;
        line-height: 1.5;
        word-break: break-word;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
    
    .copy-btn {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
    }
    
    .bank-details h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .bank-details {
        padding: 1.2rem;
    }
    
    .bank-details p {
        font-size: 0.9rem;
        padding-right: 2.2rem;
    }
    
    .qr-code {
        width: 160px;
        height: 160px;
    }
    
    .copy-btn {
        width: 26px;
        height: 26px;
    }
    
    .bank-details h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .bank-details p {
        font-size: 0.85rem;
        padding-right: 2rem;
    }
    
    .qr-code {
        width: 140px;
        height: 140px;
    }
    
    .copy-btn {
        width: 24px;
        height: 24px;
    }
    
    .bank-transfer-container {
        gap: 1.5rem;
    }
}

/* Ensure text doesn't overflow on very small devices */
.bank-details p strong {
    display: block;
    margin-bottom: 0.2rem;
}

/* Improve spacing for UPI ID section */
.bank-details p:last-of-type {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}