/* ============================================
   RED, BLACK & YELLOW COLOR SCHEME
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p{
    color: white;
}

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== RED, BLACK & YELLOW COLOR PALETTE ===== */
:root {
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #ef4444;
    --black: #111111;
    --black-light: #1f1f1f;
    --black-dark: #000000;
    --yellow: #fbbf24;
    --yellow-dark: #d97706;
    --yellow-light: #fcd34d;
    --gold: #f59e0b;
    --white: #ffffff;
    --gray-light: #fff;
    --gray: #3a3a3a;
    --charcoal: #4a4a4a;
    --success-green: #10b981;
    --alert-red: #ef4444;
}

/* Top Bar - Red & Black */
.top-bar {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--yellow);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 3px solid var(--red);
}

.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(--red);
    font-size: 16px;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-right a {
    color: var(--yellow);
    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(--red);
    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(--red);
    color: var(--black);
}

/* Header - Logo Section */
.hero-topheaderbar {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 20px 0;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.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(--red), var(--yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
    border: 3px solid var(--yellow);
    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(--yellow), var(--red));
    -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(--yellow);
    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(--yellow);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--yellow);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

.signup-btn {
    background: var(--red);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--red);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.signup-btn:hover {
    background: transparent;
    color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.donate-btn {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: var(--black);
    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(220, 38, 38, 0.3);
    transition: all 0.3s;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

/* Navigation Bar */
header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--red);
    font-size: 24px;
    color: var(--yellow);
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--red);
    color: var(--black);
    border-color: var(--yellow);
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.nav-menu a {
    color: var(--yellow);
    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(--red);
    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: var(--red);
    background: rgba(220, 38, 38, 0.1);
}

/* Hero Slider */
.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.6);
}

.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.5);
    line-height: 1.2;
    color: var(--yellow);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
    color: white;
}

.slide-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--red);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--yellow);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--yellow);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--yellow);
    background: rgba(0,0,0,0.5);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    border: 2px solid var(--red);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--red);
    color: var(--yellow);
    border-color: var(--yellow);
}

.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(--red);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--black-light);
    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.5);
    border: 2px solid var(--red);
}

@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(--red), var(--red-dark));
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--yellow);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: rgba(0,0,0,0.3);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--yellow);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--yellow);
    color: var(--black);
    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: var(--gray);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-weight: 600;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.modal-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--yellow);
    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(220, 38, 38, 0.4);
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: var(--black);
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
    border-top: 1px solid var(--gray);
}

.modal-footer a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-footer a:hover {
    color: var(--red);
    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: var(--black);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--red);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-code {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--yellow);
    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(0,0,0,0.3);
    text-decoration-style: wavy;
    border: 2px solid var(--yellow);
}

.refresh-captcha {
    background: var(--red);
    color: var(--yellow);
    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(--yellow);
    color: var(--black);
    transform: rotate(180deg);
}

.captcha-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    background: var(--black);
    color: white;
}

.captcha-input:focus {
    border-color: var(--red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.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: rgba(220, 38, 38, 0.2);
    color: var(--red);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--red);
    font-size: 14px;
}

/* Quick Links */
.quick-links {
    padding: 80px 0;
    background: var(--black);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    -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(--red), var(--yellow));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--yellow);
    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: var(--black-light);
    padding: 35px 25px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
}

.quick-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--red);
}

.quick-card i {
    font-size: 50px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.quick-card h3 {
    margin-bottom: 15px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 20px;
}

.quick-card p {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.7;
    color:white;
}

.quick-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--yellow);
    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(220, 38, 38, 0.3);
}

.quick-btn:hover {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--black-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
    
}

.about-text strong {
    color: var(--yellow);
    font-size: 18px;
}

.about-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-light);
    line-height: 1.7;
}

.about-text ul li i {
    color: var(--red);
    font-size: 18px;
    margin-top: 3px;
}

.about-image {
    background: linear-gradient(135deg, var(--red), var(--black));
    border-radius: 30px;
    padding: 50px 40px;
    color: white;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 30px 50px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--yellow);
}

.about-image:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
}

.about-image:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
}

.about-image h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: var(--yellow);
}

.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(--yellow);
    font-size: 24px;
}

/* Women, Rural, Environment Sections */
.women, .rural, .environment {
    padding: 80px 0;
}

.women {
    background: var(--black);
}

.women .section-title {
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rural {
    background: var(--black-light);
}

.rural .section-title {
    background: linear-gradient(135deg, var(--yellow), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.environment {
    background: var(--black);
}

.environment .section-title {
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -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.3);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--yellow);
}

.women-image {
    background: linear-gradient(135deg, var(--red), var(--black));
}

.rural-image {
    background: linear-gradient(135deg, var(--black), var(--red));
}

.environment-image {
    background: linear-gradient(135deg, var(--red-dark), var(--black));
}

.women-image h3, .rural-image h3, .environment-image h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--yellow);
}

.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(--yellow);
    font-size: 24px;
}

.women-text h3, .rural-text h3, .environment-text h3 {
    color: var(--yellow);
    margin: 30px 0 15px;
    font-size: 22px;
    font-weight: 700;
}

.women-text p, .rural-text p, .environment-text p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* Members Section */
.members {
    padding: 80px 0;
    background: var(--black-light);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.member-card {
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: all 0.4s;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.member-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(220, 38, 38, 0.2);
    border-color: var(--red);
}

.member-image {
    height: 200px;
    background: linear-gradient(135deg, var(--red), var(--black));
    position: relative;
}

.member-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: rgba(251, 191, 36, 0.3);
}

.member-content {
    padding: 25px;
    text-align: center;
}

.member-content h3 {
    margin-bottom: 10px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 20px;
}

.member-content p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Donate Section */
.donate-smile {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red), var(--black));
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
}

.donate-smile:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
}

.donate-smile:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(220, 38, 38, 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.3);
    color: var(--yellow);
}

.donate-text p {
    font-size: 20px;
    opacity: 0.95;
}

.donate-btn-large {
    background: var(--yellow);
    color: var(--black);
    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.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-btn-large:hover {
    background: var(--red);
    color: var(--yellow);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    height: 280px;
    background: linear-gradient(135deg, var(--red), var(--black));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--yellow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--black), transparent);
    color: var(--yellow);
    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: var(--black);
}

.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: var(--black-light);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.contact-card i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 18px;
}

.contact-card p, .contact-card a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--red);
}

.map {
    background: var(--black-light);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    border: 2px dashed var(--red);
}

.map i {
    font-size: 60px;
    color: var(--red);
    margin-bottom: 20px;
}

.map span {
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--black), var(--black-dark));
    color: white;
    padding: 70px 0 20px;
    border-top: 5px solid var(--red);
}

.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(--yellow);
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    border-radius: 3px;
}

.footer-col p {
    color: var(--gray-light);
    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: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:before {
    content: '→';
    color: var(--red);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
    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: var(--yellow);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--red);
    color: var(--yellow);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-light);
    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: var(--black);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 999;
    border-top: 3px solid var(--red);
    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(--yellow);
    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(--red);
}

.mobile-bottom-nav .nav-link.active {
    color: var(--red);
}

.mobile-bottom-nav .nav-link.active i {
    color: var(--yellow);
}

.mobile-bottom-nav .nav-link:hover {
    color: var(--red);
}

.mobile-bottom-nav .nav-link:hover i {
    color: var(--yellow);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    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: var(--black);
    z-index: 1002;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0;
}

.mobile-menu-header {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--yellow);
    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(0,0,0,0.3);
    border: none;
    color: var(--yellow);
    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: var(--yellow);
    color: var(--black);
    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 rgba(255,255,255,0.1);
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.mobile-menu-item:hover {
    background: rgba(220, 38, 38, 0.2);
    padding-left: 25px;
}

.mobile-menu-item i {
    width: 25px;
    color: var(--red);
    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.9);
    justify-content: center;
    align-items: center;
}

.custom-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    border: 3px solid var(--yellow);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: var(--yellow);
    cursor: pointer;
    transition: transform 0.3s;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--red);
}

.ngo-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.ngo-desc {
    font-size: 18px;
    color: white;
    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(--black), var(--black-light));
        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;
    }
}