 :root {
            --primary-orange: #ff7e05;
            --deep-saffron: #ff9933;
            --maroon: #800000;
            --text-dark: #2c2c2c;
            --bg-light: #fff5e6;
        }

        body {
            font-family: 'Mukta', sans-serif;
            background-color: var(--bg-light);
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff7e05' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            color: var(--text-dark);
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        /* Navbar Styling */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .nav-link-custom {
            font-weight: 600;
            margin: 0 5px;
            border-radius: 50px;
            transition: all 0.3s ease;
            padding: 8px 20px !important;
        }
        .nav-link-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #ff9933 0%, #ff4b1f 100%);
            color: white;
            padding: 60px 0 40px;
            border-radius: 0 0 50% 50% / 20px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(255, 75, 31, 0.3);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        

        .hero-title {
            font-family: 'Tiro Devanagari Marathi', serif;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            font-size: 2.5rem;
        }

        /* Card Styling */
        .campaign-card {
            border: none;
            border-radius: 15px;
            background: #ffffff;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            overflow: hidden;
        }
        .campaign-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .campaign-img-wrapper {
            height: 200px;
            overflow: hidden;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .campaign-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .campaign-card:hover .campaign-img-wrapper img {
            transform: scale(1.1);
        }
        
        /* Donation Section */
        .donation-card {
            background: linear-gradient(to right, #ffffff, #fffdf5);
            border: 2px solid #eecda3;
            border-radius: 20px;
            padding: 20px;
        }
        .donation-list p {
            background: rgba(255, 126, 5, 0.1);
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid var(--primary-orange);
            font-weight: 600;
        }

        /* Buttons */
        .btn-custom {
            border-radius: 50px;
            padding: 10px 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        footer {
            background: #232323;
            color: #ccc;
            padding: 40px 0 20px;
            margin-top: 50px;
            position: relative;
        }
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff9933, #ffffff, #138808); /* Tiranga/Saffron hint */
        }
        .social-btn {
            width: 45px;
            height: 45px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: #fff;
            margin: 0 5px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-btn:hover {
            background: var(--primary-orange);
            color: white;
            transform: rotate(360deg);
        }

        /* Floating APK Button */
        .float-apk {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            animation: bounce 2s infinite;
        }
        .apk-btn {
            background: white;
            padding: 10px;
            border-radius: 50%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            display: block;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-10px);}
            60% {transform: translateY(-5px);}
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
