
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            opacity: 0.3;
        }

        .floating-om {
            position: fixed;
            font-size: 100px;
            opacity: 0.05;
            animation: float 20s infinite;
            pointer-events: none;
            z-index: -1;
        }

        .om-1 { top: 10%; left: 10%; animation-delay: 0s; }
        .om-2 { top: 60%; right: 10%; animation-delay: 5s; }
        .om-3 { bottom: 20%; left: 50%; animation-delay: 10s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        /* Language Toggle */
		 .language-toggle {
            position: fixed;
            top: 70px;
            right: 20px;
            z-index: 3000;
            <!-- background: white; -->
            padding: 0.5rem 1rem;
            border-radius: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            gap: 0.5rem;
        }

        .lang-btn {
            padding: 0.3rem 0.8rem;
            border: 2px solid #c31432;
            background: white;
            color: #c31432;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .lang-btn.active {
            background: #c31432;
            color: white;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo h1 {
            font-size: 2rem;
            font-weight: bold;
        }

        .logo p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        nav a:hover {
            opacity: 0.8;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(195, 20, 50, 0.85), rgba(36, 11, 54, 0.85)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0e6d2" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '🕉️';
            position: absolute;
            font-size: 300px;
            opacity: 0.1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }

        .hero-owner {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 1rem;
            color: #ffd700;
        }

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 3rem 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            border-radius: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateY(0);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
        }

        /* Owner Section */
        .owner-section {
            background: #f8f9fa;
            padding: 4rem 0;
        }

        .owner-content {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            align-items: center;
        }

        .owner-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 6rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            overflow: hidden;
        }

        .owner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .owner-text h2 {
            color: #c31432;
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .owner-text h3 {
            color: #666;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .owner-text p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        /* Filter Section */
        .filter-section {
            background: #fff;
            padding: 2rem 0;
            border-bottom: 2px solid #c31432;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .filters {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-group label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #555;
        }

        .filter-group select {
            padding: 0.5rem 1rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            background: white;
            transition: border-color 0.3s;
        }

        .filter-group select:focus {
            outline: none;
            border-color: #c31432;
        }

        /* New Proposals Badge */
        .new-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff4444;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Profiles Section */
        .profiles-section {
            padding: 4rem 0;
            background: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: #c31432;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .profile-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            position: relative;
        }

        .profile-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(195, 20, 50, 0.3);
        }

        .profile-image {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            overflow: hidden;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-info {
            padding: 1.5rem;
        }

        .profile-info h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .profile-details {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .profile-details p {
            margin-bottom: 0.4rem;
        }

        .view-btn {
            margin-top: 1rem;
            background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            width: 100%;
            transition: transform 0.3s;
            font-weight: 600;
        }

        .view-btn:hover {
            transform: scale(1.05);
        }

        /* Success Stories */
        .success-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 50%, #ffecd2 100%);
            padding: 4rem 0;
        }

        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .success-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }

        .success-card:hover {
            transform: scale(1.05);
        }

        .success-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            overflow: hidden;
        }

        .success-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .success-info {
            padding: 1.5rem;
            text-align: center;
        }

        .success-info h4 {
            font-size: 1.2rem;
            color: #c31432;
            margin-bottom: 0.5rem;
        }

        .success-info p {
            color: #666;
            font-size: 0.9rem;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, #240b36 0%, #c31432 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .contact-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 1rem 2.5rem;
            background: white;
            color: #c31432;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }

        .cta-btn.whatsapp {
            background: #25D366;
            color: white;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            overflow-y: auto;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal-content {
            background: white;
            max-width: 800px;
            width: 100%;
            border-radius: 15px;
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideIn 0.3s;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .close-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
            transition: transform 0.3s;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 2rem;
        }

        .biodata-section {
            margin-bottom: 2rem;
        }

        .biodata-section h3 {
            color: #c31432;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #c31432;
            padding-bottom: 0.5rem;
        }

        .biodata-row {
            display: grid;
            grid-template-columns: 180px 1fr;
            padding: 0.7rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .biodata-label {
            font-weight: 600;
            color: #555;
        }

        .biodata-value {
            color: #333;
        }

        /* About Section */
        .about-section {
            background: #f8f9fa;
            padding: 3rem 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .about-text h3 {
            color: #c31432;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            line-height: 1.8;
            color: #666;
            margin-bottom: 1rem;
        }

        .contact-info h3 {
            color: #c31432;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .contact-item strong {
            min-width: 100px;
        }

        /* Footer */
        footer {
            background: #240b36;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .hero h2 {
                font-size: 1.8rem;
            }

            .owner-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .owner-image {
                margin: 0 auto;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .filters {
                flex-direction: column;
            }

            .biodata-row {
                grid-template-columns: 1fr;
                gap: 0.3rem;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        /* Hidden content for language toggle */
        .lang-hi { display: inline; }
        .lang-en { display: none; }

        body.english .lang-hi { display: none; }
        body.english .lang-en { display: inline; }

        /* Community Section Styles */
        .community-section {
            background: #fff;
            padding: 4rem 0;
        }

        .community-content {
            margin-top: 2rem;
        }

        .community-intro {
            margin-bottom: 3rem;
        }

        .intro-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
        }

        .intro-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

        .intro-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .intro-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.95;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid #c31432;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(195, 20, 50, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h4 {
            color: #c31432;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        .samaj-activities {
            margin: 4rem 0;
            padding: 3rem 0;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            border-radius: 20px;
            padding: 3rem;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .activity-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .activity-card:hover {
            transform: scale(1.05);
        }

        .activity-number {
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 5rem;
            font-weight: bold;
            color: rgba(195, 20, 50, 0.1);
            line-height: 1;
        }

        .activity-card h4 {
            color: #c31432;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .activity-card p {
            color: #666;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .join-section {
            margin-top: 4rem;
        }

        .join-card {
            background: linear-gradient(135deg, #240b36 0%, #c31432 100%);
            color: white;
            padding: 3rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(195, 20, 50, 0.3);
        }

        .join-card h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .join-card p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .join-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .join-btn {
            padding: 1rem 2.5rem;
            background: white;
            color: #c31432;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .join-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
        }

        .join-btn.donate {
            background: #ffd700;
            color: #240b36;
        }

        /* Hidden content for language toggle */
        .lang-hi { display: inline; }
        .lang-en { display: none; }

        body.english .lang-hi { display: none; }
        body.english .lang-en { display: inline; }

