* {
     margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #fefaf5;
            color: #2d3e50;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ===== VIBRANT COLOR PALETTE ===== */
        :root {
            --saffron: #3e5d0f;
            --deep-saffron: #000;
            --green: #138808;
            --deep-green: #de2a1c;
            --blue: #4B78B0;
            --deep-blue: #4a0f5d; /*navabrcolor*/
            --gold: #b59898;  /*leftcolor*/
            --warm-orange: #4a0f5d;
            --soft-cream: #FFF8E7;
            --pure-white: #FFFFFF;
            --light-gray: #F5F5F5;
            --charcoal: #2D3E50;
            --success-green: #28A745;
            --alert-red: #DC3545;
        }
        
        /* Top Bar - Enhanced with gradient */
        .top-bar {
            background: linear-gradient(135deg, var(--deep-blue) 0%, var(--deep-green) 100%);
            color: white;
            padding: 10px 0;
            font-size: 14px;
            border-bottom: 3px solid var(--gold);
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .top-bar-left {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        
        .top-bar-left i {
            color: var(--gold);
            font-size: 16px;
        }
        
        .top-bar-right {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .top-bar-right a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .top-bar-right a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }
        
        .top-bar-right .social-icon {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .top-bar-right .social-icon:hover {
            background: var(--gold);
            color: var(--deep-blue);
        }
        
        /* Header - Logo Section */
        .hero-topheaderbar {
            background: linear-gradient(135deg, #ffffff 0%, var(--soft-cream) 100%);
            padding: 20px 0;
            border-bottom: 2px solid rgba(255,153,51,0.2);
        }
        
        .hero-topheaderbar .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--saffron), var(--green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 10px 20px rgba(255,153,51,0.2);
            border: 3px solid var(--gold);
            flex-shrink: 0;
            overflow: hidden;
        }
        
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .logo-text h1 {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }
        
        .logo-text p {
            font-size: 14px;
            color: var(--charcoal);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        .auth-buttons {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .login-btn {
            background: transparent;
            color: var(--deep-blue);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--deep-blue);
            transition: all 0.3s;
            cursor: pointer;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .login-btn:hover {
            background: var(--deep-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30,58,95,0.2);
        }
        
        .signup-btn {
            background: var(--deep-blue);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--deep-blue);
            transition: all 0.3s;
            cursor: pointer;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .signup-btn:hover {
            background: transparent;
            color: var(--deep-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30,58,95,0.1);
        }
        
        .donate-btn {
            background: linear-gradient(135deg, var(--warm-orange), var(--deep-saffron));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
            transition: all 0.3s;
        }
        
        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255,107,53,0.4);
        }
        
        /* Navigation Bar */
        header {
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 2px solid rgba(255,255,255,0.3);
            font-size: 24px;
            color: white;
            cursor: pointer;
            padding: 8px 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .mobile-menu-btn:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--gold);
        }
        
        .nav-menu {
            display: flex;
            gap: 5px;
            align-items: center;
            flex-wrap: wrap;
            width: 100%;
            justify-content: center;
        }
        
        .nav-menu a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 18px 16px;
            transition: all 0.3s;
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.3px;
        }
        
        .nav-menu a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        .nav-menu a:hover:before,
        .nav-menu a.active:before {
            transform: scaleX(1);
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: white;
            background: rgba(255,255,255,0.1);
        }
        
        /* Hero Slider - Enhanced */
        .hero-slider {
            position: relative;
            height: 650px;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .swiper-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
        }
        
        .slide-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 800px;
            padding: 0 40px;
            margin: 0 auto;
            text-align: center;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-content h2 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }
        
        .slide-content p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.8;
        }
        
        .slide-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: var(--gold);
            color: var(--deep-blue);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 20px rgba(255,215,0,0.3);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255,215,0,0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid white;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--deep-blue);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255,255,255,0.3);
        }
        
        .swiper-button-prev,
        .swiper-button-next {
            color: white;
            background: rgba(255,255,255,0.2);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: var(--gold);
            color: var(--deep-blue);
            border-color: var(--gold);
        }
        
        .swiper-button-prev:after,
        .swiper-button-next:after {
            font-size: 22px;
            font-weight: bold;
        }
        
        .swiper-pagination-bullet {
            background: white;
            opacity: 0.5;
            width: 12px;
            height: 12px;
            transition: all 0.3s;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--gold);
            opacity: 1;
            width: 30px;
            border-radius: 6px;
        }
        
        /* Modal Styles - Enhanced */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 450px;
            width: 90%;
            position: relative;
            animation: modalSlide 0.4s ease;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            border: 5px solid rgba(255,153,51,0.2);
        }
        
        @keyframes modalSlide {
            from {
                transform: translateY(-50px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }
        
        .modal-header {
            background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
            padding: 20px 30px;
            border-radius: 15px 15px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            color: white;
            font-size: 26px;
            font-weight: 700;
            margin: 0;
        }
        
        .modal-close {
            background: rgba(255,255,255,0.2);
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        
        .modal-body {
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
        }
        
        .modal-body::-webkit-scrollbar {
            width: 6px;
        }
        
        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .modal-body::-webkit-scrollbar-thumb {
            background: var(--deep-blue);
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--charcoal);
            font-weight: 600;
            font-size: 14px;
        }
        
        .form-group input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(255,153,51,0.1);
        }
        
        .modal-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        
        .modal-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30,58,95,0.3);
        }
        
        .modal-footer {
            padding: 20px 30px 30px;
            text-align: center;
            border-top: 1px solid #eee;
        }
        
        .modal-footer a {
            color: var(--deep-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .modal-footer a:hover {
            color: var(--saffron);
            text-decoration: underline;
        }
        
        /* Validation Styles */
        .multimessage {
            min-height: 25px;
            margin-top: 5px;
        }
        
        .text-success {
            color: var(--success-green) !important;
            font-size: 12px;
            font-weight: 500;
        }
        
        .text-danger {
            color: var(--alert-red) !important;
            font-size: 12px;
            font-weight: 500;
        }
        
        .fa-spinner {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* CAPTCHA Styles */
        .captcha-container {
            background: #f0f7f4;
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #d4e6e0;
        }
        
        .captcha-box {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .captcha-code {
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            color: white;
            font-size: 28px;
            font-weight: bold;
            padding: 12px;
            border-radius: 8px;
            letter-spacing: 15px;
            text-align: center;
            flex: 1;
            font-family: 'Courier New', monospace;
            text-decoration: line-through;
            text-decoration-color: rgba(255,255,255,0.5);
            text-decoration-style: wavy;
            border: 2px solid var(--gold);
        }
        
        .refresh-captcha {
            background: var(--deep-blue);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        
        .refresh-captcha:hover {
            background: var(--saffron);
            transform: rotate(180deg);
        }
        
        .captcha-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: 0.3s;
        }
        
        .captcha-input:focus {
            border-color: var(--deep-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
        }
        
        .captcha-input.error {
            border-color: var(--alert-red);
            animation: shake 0.5s;
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        /* Alert Styles */
        .alert-danger {
            background: #f8d7da;
            color: #721c24;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border: 1px solid #f5c6cb;
            font-size: 14px;
        }
        
        /* Quick Links */
        .quick-links {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f4e9 0%, #fff8e7 100%);
        }
        
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            color: #666;
            max-width: 700px;
            margin: 30px auto 50px;
            font-size: 18px;
        }
        
        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        .quick-card {
            background: white;
            padding: 35px 25px;
            text-align: center;
            border-radius: 20px;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(255,153,51,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .quick-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--saffron), var(--green));
        }
        
        .quick-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(255,153,51,0.15);
            border-color: var(--saffron);
        }
        
        .quick-card i {
            font-size: 50px;
            background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        
        .quick-card h3 {
            margin-bottom: 15px;
            color: var(--deep-blue);
            font-weight: 700;
            font-size: 20px;
        }
        
        .quick-card p {
            color: #666;
            margin-bottom: 25px;
            font-size: 14px;
            line-height: 1.7;
        }
        
        .quick-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(30,58,95,0.2);
        }
        
        .quick-btn:hover {
            background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(255,153,51,0.3);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-text strong {
            color: var(--deep-blue);
            font-size: 18px;
        }
        
        .about-text ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            color: #555;
            line-height: 1.7;
        }
        
        .about-text ul li i {
            color: var(--green);
            font-size: 18px;
            margin-top: 3px;
        }
        
        .about-image {
            background: linear-gradient(135deg, var(--saffron), var(--green));
            border-radius: 30px;
            padding: 50px 40px;
            color: white;
            height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 30px 50px rgba(255,153,51,0.2);
            position: relative;
            overflow: hidden;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .about-image h3 {
            font-size: 36px;
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .about-image ul {
            list-style: none;
            position: relative;
            z-index: 1;
        }
        
        .about-image li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 18px;
            font-weight: 500;
        }
        
        .about-image i {
            color: var(--gold);
            font-size: 24px;
        }
        
        /* Women, Rural, Environment Sections */
        .women, .rural, .environment {
            padding: 80px 0;
        }
        
        .women {
            background: linear-gradient(135deg, #fff0f5 0%, #ffe4f0 100%);
        }
        
        .women .section-title {
            background: linear-gradient(135deg, #c71585, #ff69b4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .rural {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        }
        
        .rural .section-title {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .environment {
            background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 100%);
        }
        
        .environment .section-title {
            background: linear-gradient(135deg, #0288d1, #03a9f4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .women-content, .rural-content, .environment-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .women-image, .rural-image, .environment-image {
            border-radius: 30px;
            padding: 50px 40px;
            color: white;
            height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 30px 50px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .women-image {
            background: linear-gradient(135deg, #c71585, #ff69b4);
        }
        
        .rural-image {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
        }
        
        .environment-image {
            background: linear-gradient(135deg, #0288d1, #03a9f4);
        }
        
        .women-image h3, .rural-image h3, .environment-image h3 {
            font-size: 36px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .women-image ul, .rural-image ul, .environment-image ul {
            list-style: none;
        }
        
        .women-image li, .rural-image li, .environment-image li {
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 18px;
            font-weight: 500;
        }
        
        .women-image i, .rural-image i, .environment-image i {
            color: var(--gold);
            font-size: 24px;
        }
        
        .women-text h3, .rural-text h3, .environment-text h3 {
            color: var(--deep-blue);
            margin: 30px 0 15px;
            font-size: 22px;
            font-weight: 700;
        }
        
        .women-text p, .rural-text p, .environment-text p {
            color: #555;
            line-height: 1.8;
        }
        
        /* Members Section */
        .members {
            padding: 80px 0;
            background: white;
        }
        
        .members-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .member-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            transition: all 0.4s;
            border: 1px solid rgba(255,153,51,0.1);
        }
        
        .member-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(255,153,51,0.15);
            border-color: var(--saffron);
        }
        
        .member-image {
            height: 200px;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            position: relative;
        }
        
        .member-image i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 70px;
            color: rgba(255,255,255,0.3);
        }
        
        .member-content {
            padding: 25px;
            text-align: center;
        }
        
        .member-content h3 {
            margin-bottom: 10px;
            color: var(--deep-blue);
            font-weight: 700;
            font-size: 20px;
        }
        
        .member-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
        }
        
        /* Donate Section */
        .donate-smile {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .donate-smile:before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255,215,0,0.1);
            border-radius: 50%;
        }
        
        .donate-smile:after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255,153,51,0.1);
            border-radius: 50%;
        }
        
        .donate-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .donate-text h2 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .donate-text p {
            font-size: 20px;
            opacity: 0.95;
        }
        
        .donate-btn-large {
            background: white;
            color: var(--deep-blue);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 20px;
            transition: all 0.3s;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .donate-btn-large:hover {
            background: var(--gold);
            color: var(--deep-blue);
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(255,215,0,0.4);
        }
        
        /* Gallery */
        .gallery {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f5f5 0%, #eee 100%);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 280px;
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 25px;
            transform: translateY(100%);
            transition: transform 0.4s;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h4 {
            font-size: 20px;
            font-weight: 700;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .contact-card {
            background: linear-gradient(135deg, #f8f4e9, #fff8e7);
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s;
            border: 1px solid rgba(255,153,51,0.1);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            border-color: var(--saffron);
            box-shadow: 0 20px 40px rgba(255,153,51,0.1);
        }
        
        .contact-card i {
            font-size: 40px;
            background: linear-gradient(135deg, var(--saffron), var(--deep-saffron));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
        
        .contact-card h3 {
            margin-bottom: 10px;
            color: var(--deep-blue);
            font-weight: 700;
            font-size: 18px;
        }
        
        .contact-card p, .contact-card a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
            word-break: break-word;
        }
        
        .contact-card a:hover {
            color: var(--saffron);
        }
        
        .map {
            background: linear-gradient(135deg, #f8f4e9, #fff8e7);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #666;
            border: 2px dashed var(--saffron);
        }
        
        .map i {
            font-size: 60px;
            color: var(--saffron);
            margin-bottom: 20px;
        }
        
        .map span {
            font-size: 18px;
            font-weight: 600;
            color: var(--deep-blue);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #5b1255, #de3419eb);
            color: white;
            padding: 70px 0 20px;
            border-top: 5px solid var(--gold);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            margin-bottom: 25px;
            font-size: 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 12px;
            color: var(--gold);
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--saffron), var(--gold));
            border-radius: 3px;
        }
        
        .footer-col p {
            color: #ddd;
            margin-bottom: 25px;
            line-height: 1.8;
            font-size: 14px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:before {
            content: 'â†’';
            color: var(--saffron);
            transition: transform 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .footer-links a:hover:before {
            transform: translateX(3px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }
        
        .social-links a:hover {
            background: var(--saffron);
            color: var(--deep-blue);
            transform: translateY(-5px) rotate(360deg);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 14px;
        }
        
        .disclaimer {
            margin-top: 20px;
            font-size: 12px;
            line-height: 1.7;
            opacity: 0.7;
        }
        
        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 999;
            border-top: 3px solid var(--saffron);
            padding: 8px 0;
        }
        
        .mobile-bottom-nav .nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-bottom-nav .nav-item {
            flex: 1;
            text-align: center;
        }
        
        .mobile-bottom-nav .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 11px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 8px 0;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
        }
        
        .mobile-bottom-nav .nav-link i {
            font-size: 20px;
            margin-bottom: 4px;
            color: var(--deep-blue);
        }
        
        .mobile-bottom-nav .nav-link.active {
            color: var(--saffron);
        }
        
        .mobile-bottom-nav .nav-link.active i {
            color: var(--saffron);
        }
        
        .mobile-bottom-nav .nav-link:hover {
            color: var(--saffron);
        }
        
        .mobile-bottom-nav .nav-link:hover i {
            color: var(--saffron);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            backdrop-filter: blur(5px);
        }
        
        .mobile-menu-overlay.active {
            display: block;
        }
        
        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100%;
            background: white;
            z-index: 1002;
            transition: right 0.3s ease;
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
            overflow-y: auto;
        }
        
        .mobile-menu-panel.active {
            right: 0;
        }
        
        .mobile-menu-header {
            background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-menu-header h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 0;
        }
        
        .mobile-menu-close {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .mobile-menu-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        
        .mobile-menu-items {
            padding: 15px;
        }
        
        .mobile-menu-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            color: var(--charcoal);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .mobile-menu-item:hover {
            background: rgba(255,153,51,0.1);
            padding-left: 25px;
        }
        
        .mobile-menu-item i {
            width: 25px;
            color: var(--saffron);
            font-size: 18px;
        }
        
        /* Image Modal */
        .custom-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            justify-content: center;
            align-items: center;
        }
        
        .custom-modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 40px;
            color: #fff;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .close-modal:hover {
            transform: rotate(90deg);
        }
        
        .ngo-title {
            font-size: 42px;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        
        .ngo-desc {
            font-size: 18px;
            color: #ffffff;
            text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .quick-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .members-grid,
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content,
            .women-content,
            .rural-content,
            .environment-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .about-image,
            .women-image,
            .rural-image,
            .environment-image {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-bottom: 70px;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                background: linear-gradient(135deg, var(--deep-blue), var(--deep-green));
                border-radius: 0 0 20px 20px;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .login-btn,
            .signup-btn,
            .donate-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .top-bar-left,
            .top-bar-right {
                width: 100%;
                justify-content: center;
            }
            
            .top-bar-left {
                margin-bottom: 10px;
            }
            
            .hero-slider {
                height: 500px;
            }
            
            .slide-content h2 {
                font-size: 32px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .quick-grid,
            .members-grid,
            .gallery-grid,
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .donate-content {
                flex-direction: column;
                text-align: center;
            }
            
            .donate-text h2 {
                font-size: 32px;
            }
            
            .donate-text p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-slider {
                height: 450px;
            }
            
            .slide-content h2 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .logo {
                width: 100%;
                justify-content: center;
            }
            
            .logo-text h1 {
                font-size: 22px;
            }
            
            .about-image,
            .women-image,
            .rural-image,
            .environment-image {
                height: 300px;
                padding: 30px 20px;
            }
            
            .donate-btn-large {
                padding: 15px 30px;
                font-size: 16px;
            }
        }