/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header and Navigation */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

body.dark-mode .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    gap: 0.5rem;
    width: 100%;
    position: relative;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
    align-self: flex-start;
}

.header-controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    order: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 1;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.logo h1 {
    color: #2ecc71;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: white;
    padding: 0;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2ecc71;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #2ecc71;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.logo-nav-link {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 30px;
    width: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-img {
    max-width: 400px;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 700;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.who-we-are-brief {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.who-we-are-brief p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.see-more-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.see-more-btn:hover {
    background: white;
    color: #2ecc71;
    transform: translateY(-2px);
}

.cta-button {
    background: #fff;
    color: #2ecc71;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background-color: #f0f8f0;
}

.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2ecc71;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
}

.program-item h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.program-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.impact {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: 1rem;
    background: #e8f8f5;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* News Section */
.news {
    background-color: #f0f8f0;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.news p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.news-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon-message {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-message h3 {
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.coming-soon-message p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
}

.news-category {
    background: #2ecc71;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.read-more {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #27ae60;
}

/* Donation Section */

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bank-transfer-section {
    margin-top: 3rem;
    text-align: center;
}

.bank-transfer-section h3 {
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bank-transfer-section > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.donate h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2ecc71;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.donation-card {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f8f5 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #2ecc71;
    transition: transform 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
}

.donation-card h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.donation-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: white;
    color: #2ecc71;
    border: 2px solid #2ecc71;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: #2ecc71;
    color: white;
}

.donate-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.donate-btn:hover {
    transform: translateY(-2px);
}

/* Bank Transfer Section */
.bank-transfer-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    text-align: center;
}

.bank-transfer-section h3 {
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bank-transfer-section > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.bank-info-card {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f8f5 100%);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid #2ecc71;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
}

.bank-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.bank-item strong {
    color: #2ecc71;
    font-weight: 600;
    min-width: 120px;
}

.bank-item span {
    color: #555;
    font-weight: 500;
}

.transfer-instructions {
    text-align: left;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.transfer-instructions h4 {
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.transfer-instructions ol {
    list-style: none;
    counter-reset: instruction-counter;
    padding-left: 0;
}

.transfer-instructions li {
    counter-increment: instruction-counter;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.transfer-instructions li::before {
    content: counter(instruction-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2ecc71;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Donation Form */
.donation-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-form h3 {
    text-align: center;
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.donation-form input,
.donation-form select,
.donation-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.donation-form input:focus,
.donation-form select:focus,
.donation-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
}

.donation-form .submit-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.donation-form .submit-btn:hover {
    transform: translateY(-2px);
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    flex: 1;
    min-width: 120px;
}

.tab-btn:hover {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.05);
}

.tab-btn.active {
    color: #2ecc71;
    border-bottom-color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

/* Tab Content */
.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

/* Tab Pane Cards */
.tab-pane .mvv-card {
    max-width: 600px;
    margin: 0 auto;
}

.tab-pane .who-we-are-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f8f5 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #2ecc71;
    text-align: center;
}

.tab-pane .who-we-are-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Who We Are Section */
.who-we-are {
    margin: 4rem 0;
}

.who-we-are h3 {
    text-align: center;
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 2rem;
}

.mission-vision-values {
    display: none; /* Hidden since we're using tabs now */
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
}

.mvv-icon {
    margin-bottom: 1.5rem;
    color: #2ecc71;
    display: flex;
    justify-content: center;
}

.mvv-card h4 {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-focus-areas {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.mission-focus-areas h5 {
    color: #2ecc71;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-focus-areas ol {
    list-style: none;
    counter-reset: mission-counter;
    padding-left: 0;
}

.mission-focus-areas li {
    counter-increment: mission-counter;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.mission-focus-areas li::before {
    content: counter(mission-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #2ecc71;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

.values-list {
    text-align: left;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f0f8f0;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.value-item strong {
    color: #2ecc71;
    margin-right: 0.5rem;
    flex-shrink: 0;
    min-width: 100px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #f0f8f0;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.gallery > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(46, 204, 113, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Special card backgrounds */
.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, #e8f8f5 100%);
}

.values-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fff9 100%);
}

/* Sections */
section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about {
    background-color: #f0f8f0;
}

.programs {
    background-color: #f0f8f0;
}

.donate {
    background-color: #f0f8f0;
}

.contact {
    background-color: #f0f8f0;
}

/* About Section */
.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2ecc71;
}

.about > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Programs Section */
.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2ecc71;
}

/* Donation Section */
.donate h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2ecc71;
}

/* Contact Section */
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2ecc71;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section Content */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    color: #333;
    font-weight: 500;
}

.file-upload {
    position: relative;
    flex: 1;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #2ecc71;
    border-radius: 8px;
    background: white;
    color: #2ecc71;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.file-label:hover {
    background: #2ecc71;
    color: white;
}

.file-icon {
    font-size: 1.2rem;
}

.file-text {
    font-size: 0.9rem;
}

.donate-now-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.donate-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.heart-icon {
    font-size: 1.2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.map-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-info strong {
    color: #2ecc71;
}

.contact-link {
    color: #2ecc71;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #27ae60;
    text-decoration: underline;
}

.contact-info h3 {
    color: #2ecc71;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
}

.contact-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: #2ecc71;
}

.submit-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Member Section */
.member {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0 4rem;
    background-color: #f0f8f0;
}

.member h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.member > p {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.member-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.member-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-form h3 {
    text-align: center;
    color: #2ecc71;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2ecc71;
}

.member-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.member-form input,
.member-form select,
.member-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

.member-form input:focus,
.member-form select:focus,
.member-form textarea:focus {
    outline: none;
    border-color: #2ecc71;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.submit-application-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 2rem;
}

.submit-application-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ffcc99 0%, #ffb366 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #000000;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-info-footer {
    padding: 1rem;
}

.contact-info-footer p {
    margin: 0.5rem 0;
    color: #000000;
    font-weight: 500;
}

.contact-info-footer a {
    color: #2ecc71;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-footer a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    color: #2ecc71;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #000000;
    color: #ffffff;
}

body.dark-mode .header {
    background-color: #000000 !important;
}

/* Admin Styles */
.admin-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.admin-header {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.admin-header h2 {
    margin-bottom: 0.5rem;
}

.admin-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.admin-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.admin-btn.danger {
    background: #e74c3c;
}

.admin-btn.danger:hover {
    background: #c0392b;
}

.admin-dashboard {
    margin-bottom: 2rem;
}

.admin-dashboard h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.stat-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.9;
    margin: 0;
}

.admin-content,
.admin-gallery,
.admin-settings {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.admin-content h3,
.admin-gallery h3,
.admin-settings h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.admin-form {
    display: grid;
    gap: 1rem;
}

.admin-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form .form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.admin-form .form-group input,
.admin-form .form-group textarea,
.admin-form .form-group select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.admin-form .form-group input:focus,
.admin-form .form-group textarea:focus,
.admin-form .form-group select:focus {
    outline: none;
    border-color: #2ecc71;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.admin-login-form {
    display: grid;
    gap: 1rem;
}

.admin-access-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.admin-toggle {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.admin-toggle:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

body.dark-mode .admin-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
}

body.dark-mode .admin-header {
    background: linear-gradient(135deg, #27ae60, #229954);
}

body.dark-mode .admin-content,
body.dark-mode .admin-gallery,
body.dark-mode .admin-settings {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333333;
}

body.dark-mode .admin-form .form-group input,
body.dark-mode .admin-form .form-group textarea,
body.dark-mode .admin-form .form-group select {
    background: #000000;
    color: #ffffff;
    border-color: #333333;
}

body.dark-mode .modal-content {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333333;
}

body.dark-mode .modal-header h3 {
    color: #ffffff;
}

body.dark-mode .close-btn:hover {
    background: #2d2d2d;
    color: #e74c3c;
}

/* Admin News Management Styles */
.admin-news {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.admin-news h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.admin-news h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.news-list {
    display: grid;
    gap: 1rem;
}

.news-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-item-content {
    flex: 1;
}

.news-item-content h5 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.1rem;
}

.news-item-content p {
    margin-bottom: 0.5rem;
    color: #7f8c8d;
    line-height: 1.5;
}

.news-item-content small {
    display: block;
    color: #95a5a6;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.news-item-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

body.dark-mode .admin-news {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333333;
}

body.dark-mode .admin-news h3,
body.dark-mode .admin-news h4 {
    color: #ffffff;
}

body.dark-mode .news-item {
    background: #1a1a1a;
    border-left-color: #27ae60;
}

body.dark-mode .news-item-content h5 {
    color: #ffffff;
}

body.dark-mode .news-item-content p {
    color: #cccccc;
}

body.dark-mode .news-item-content small {
    color: #999999;
}

/* News Edit Form Styles */
.news-edit-form {
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    margin-top: 0.5rem;
}

.news-edit-form .form-group {
    margin-bottom: 1rem;
}

.news-edit-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.news-edit-form .form-group input,
.news-edit-form .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.news-edit-form .form-group input:focus,
.news-edit-form .form-group textarea:focus {
    outline: none;
    border-color: #2ecc71;
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.news-edit-form .form-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

body.dark-mode .news-edit-form {
    background: #1a1a1a;
    border-color: #333333;
}

body.dark-mode .news-edit-form .form-group label {
    color: #ffffff;
}

body.dark-mode .news-edit-form .form-group input,
body.dark-mode .news-edit-form .form-group textarea {
    background: #000000;
    color: #ffffff;
    border-color: #444444;
}

/* User-Facing News Article Styles */
.news-article {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-article:hover .news-image img {
    transform: scale(1.05);
}

.news-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: #2ecc71;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.news-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.4;
}

.news-content p {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-video {
    background: #e3f2fd;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

body.dark-mode .news-article {
    background: #1a1a1a;
    border: 1px solid #333333;
}

body.dark-mode .news-content h3 {
    color: #ffffff;
}

body.dark-mode .news-content p {
    color: #cccccc;
}

body.dark-mode .news-date {
    color: #999999;
}

/* Admin Footer Styles */
.admin-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.admin-footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.admin-footer p:first-child {
    font-weight: 600;
    margin-bottom: 1rem;
}

body.dark-mode .admin-footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border: 1px solid #333333;
}

/* Additional Admin Styles */
.admin-password {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.admin-members {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.member-list {
    display: grid;
    gap: 1rem;
}

.member-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.member-info h5 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-info p {
    margin-bottom: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.member-info small {
    display: block;
    margin-bottom: 0.5rem;
    color: #95a5a6;
}

.member-actions {
    display: flex;
    gap: 0.5rem;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.pending {
    background: #f39c12;
    color: white;
}

.status.approved {
    background: #2ecc71;
    color: white;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-item-info {
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-item-info span {
    font-size: 0.9rem;
    color: #555555;
}

body.dark-mode .admin-password,
body.dark-mode .admin-members {
    background: #1a1a1a;
    border: 1px solid #333333;
}

body.dark-mode .member-item {
    background: #2a2a2a;
    border-left-color: #27ae60;
}

body.dark-mode .member-info h5 {
    color: #ffffff;
}

body.dark-mode .member-info p {
    color: #cccccc;
}

body.dark-mode .gallery-item {
    background: #2a2a2a;
}

/* Enhanced Admin Styles */
.admin-btn.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.news-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.news-category,
.news-date,
.news-status {
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-category {
    background: #3498db;
    color: white;
}

.news-date {
    background: #95a5a6;
    color: white;
}

.news-status.published {
    background: #2ecc71;
    color: white;
}

.news-status.draft {
    background: #f39c12;
    color: white;
}

.news-status.scheduled {
    background: #9b59b6;
    color: white;
}

body.dark-mode .news-category {
    background: #2980b9;
}

body.dark-mode .news-date {
    background: #7f8c8d;
}

body.dark-mode .news-status.published {
    background: #27ae60;
}

body.dark-mode .news-status.draft {
    background: #e67e22;
}

body.dark-mode .news-status.scheduled {
    background: #8e44ad;
}

/* Form enhancements */
.admin-form small {
    display: block;
    margin-top: 0.25rem;
    color: #7f8c8d;
    font-size: 0.8rem;
}

body.dark-mode .admin-form small {
    color: #bdc3c7;
}

/* Admin section full page */
.admin-section {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

body.dark-mode .admin-section {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #2ecc71;
    overflow: hidden;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.notification-header h4 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.notification-body {
    padding: 1rem;
}

.notification-body p {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 0.9rem;
}

.notification-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Email Subscription Popup Styles */
.subscription-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    max-width: 400px;
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.subscription-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 2px solid #2ecc71;
}

.subscription-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.subscription-header h4 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subscription-icon {
    font-size: 1.4rem;
}

.subscription-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.subscription-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.subscription-body {
    padding: 1.5rem;
    text-align: center;
}

.subscription-body p {
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscription-form .form-group {
    margin: 0;
}

.subscription-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.subscription-form input:focus {
    outline: none;
    border-color: #3498db;
}

.subscription-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscription-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Dark mode for notifications */
body.dark-mode .notification-content {
    background: #2c3e50;
    border-left-color: #27ae60;
}

body.dark-mode .notification-body p {
    color: #ecf0f1;
}

body.dark-mode .subscription-content {
    background: #2c3e50;
    border-color: #2980b9;
}

body.dark-mode .subscription-body p {
    color: #ecf0f1;
}

body.dark-mode .subscription-form input {
    background: #34495e;
    border-color: #555;
    color: white;
}

body.dark-mode .subscription-form input:focus {
    border-color: #3498db;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.notification-popup.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

.subscription-popup.hiding {
    animation: fadeOut 0.3s ease-in forwards;
}

/* Message Popup Styles */
.message-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.message-popup.show {
    transform: scale(1);
    opacity: 1;
}

.message-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border-radius: 12px 12px 0 0;
}

.message-popup-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.message-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.message-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.message-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.message-body {
    flex: 1;
    overflow-y: auto;
    max-height: 350px;
}

.message-list {
    padding: 0.5rem;
}

.message-item {
    display: flex;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-left: 3px solid transparent;
}

.message-item:hover {
    background-color: #f8f9fa;
}

.message-item.unread {
    background-color: #e8f5e8;
    border-left-color: #2ecc71;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.message-info {
    flex: 1;
    min-width: 0;
}

.message-sender {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.message-text {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.message-time {
    color: #999;
    font-size: 0.75rem;
}

.message-actions {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
}

.message-btn-primary,
.message-btn-secondary {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.message-btn-primary {
    background: #2ecc71;
    color: white;
}

.message-btn-primary:hover {
    background: #27ae60;
}

.message-btn-secondary {
    background: #e9ecef;
    color: #555;
}

.message-btn-secondary:hover {
    background: #dee2e6;
}

/* Message Button Styles */
.message-btn {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    overflow: hidden;
}

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

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

.message-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.message-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.message-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.message-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.message-popup.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .notification-popup {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .subscription-popup {
        width: 95%;
    }
    
    .message-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: 350px;
    }
    
    .notification-header h4,
    .subscription-header h4,
    .message-header h4 {
        font-size: 0.9rem;
    }
}

body.dark-mode .nav-menu {
    background: #000000 !important;
}

body.dark-mode .hero {
    background-color: #000000 !important;
}

body.dark-mode .about,
body.dark-mode .news,
body.dark-mode .programs,
body.dark-mode .gallery,
body.dark-mode .member {
    background-color: #000000;
}

body.dark-mode .donate,
body.dark-mode .contact {
    background-color: #000000;
}

body.dark-mode .feature-card,
body.dark-mode .program-card,
body.dark-mode .news-item,
body.dark-mode .contact-info,
body.dark-mode .contact-map,
body.dark-mode .contact-form,
body.dark-mode .bank-transfer-section,
body.dark-mode .donation-form,
body.dark-mode .coming-soon-message {
    background: #000000;
    color: #ecf0f1;
}

body.dark-mode .feature-card h3,
body.dark-mode .program-card h3,
body.dark-mode .news-item h3,
body.dark-mode .contact-info h3,
body.dark-mode .contact-map h3,
body.dark-mode .coming-soon-message h3 {
    color: #3498db;
}

body.dark-mode .feature-card p,
body.dark-mode .program-card p,
body.dark-mode .news-item p,
body.dark-mode .contact-info p,
body.dark-mode .contact-map p,
body.dark-mode .contact-form p,
body.dark-mode .map-info p,
body.dark-mode .coming-soon-message p {
    color: #bdc3c7;
}

body.dark-mode .nav-link {
    color: #ffffff;
    font-weight: 500;
}

body.dark-mode .nav-link:hover {
    color: #2ecc71;
    text-decoration: underline;
}

body.dark-mode .lang-select {
    background: #34495e;
    color: #ecf0f1;
    border-color: #3498db;
}

body.dark-mode .lang-select:hover {
    background: #3498db;
    color: #ffffff;
}

body.dark-mode .theme-btn {
    border-color: #3498db;
}

body.dark-mode .theme-btn:hover {
    background: #3498db;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #cc6600 0%, #ff8c00 100%);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-bottom p {
    color: #95a5a6;
}

body.dark-mode .contact-info-footer p {
    color: #ffffff;
}

body.dark-mode .social-link {
    color: #ffffff;
}

body.dark-mode .footer-section h4 {
    color: #ffffff;
}

body.dark-mode .footer-section p {
    color: #ffffff;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: #000000;
    color: #ecf0f1;
    border-color: #333333;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #95a5a6;
}

body.dark-mode .submit-btn,
body.dark-mode .cta-button,
body.dark-mode .donate-btn {
    background: #3498db;
}

body.dark-mode .submit-btn:hover,
body.dark-mode .cta-button:hover,
body.dark-mode .donate-btn:hover {
    background: #2980b9;
}

body.dark-mode .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-tab {
    display: flex;
    align-items: center;
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.admin-btn:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.admin-icon {
    font-size: 1rem;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2ecc71;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    display: flex;
    align-items: center;
}

.lang-select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    color: #333;
    font-size: 0.9rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.theme-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.theme-icon {
    font-size: 1.2rem;
}

/* Dark mode styles */
body.dark-mode .admin-btn {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border-color: #555;
}

body.dark-mode .admin-btn:hover {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

body.dark-mode .nav-menu a {
    color: #ffffff;
}

body.dark-mode .nav-menu a:hover {
    color: #2ecc71;
}

body.dark-mode .hamburger span {
    background: #ffffff;
}

body.dark-mode .lang-select {
    background: #1a1a1a;
    border-color: #444;
    color: #ffffff;
}

body.dark-mode .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mvv-card {
        padding: 2rem;
    }

    .who-we-are-content {
        padding: 1.5rem;
    }

    .who-we-are-content p {
        font-size: 1rem;
    }

    .value-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-item strong {
        margin-bottom: 0.5rem;
        min-width: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1.1rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
    }

    .donation-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .service-item {
        padding: 1.5rem;
    }
}
