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

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

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

/* Navigation */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: transparent;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    align-items: center;
    gap: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    max-width: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.website-name {
    height: 30px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.025em;
}

.nav-tagline {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

/* Non-hero page styling (for login, signup, etc.) */
body:not(.hero-page) .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body:not(.hero-page) .nav-brand h2 {
    color: #2d3748;
    text-shadow: none;
}

body:not(.hero-page) .nav-tagline {
    color: #718096;
    text-shadow: none;
}

body:not(.hero-page) .nav-link {
    color: #4a5568;
    text-shadow: none;
}

body:not(.hero-page) .nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

body:not(.hero-page) .nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.15);
}

body:not(.hero-page) .hamburger span {
    background: #4a5568;
    box-shadow: none;
}


.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.nav-link i {
    font-size: 0.8rem;
}

.donate-link {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

.donate-link:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.login-link {
    border: 2px solid #667eea;
    color: #667eea !important;
    font-weight: 600;
}

.login-link:hover {
    background: #667eea;
    color: white !important;
}

.events-link {
    margin-right: 2rem !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem 0;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateX(5px);
}

.dropdown-content a i {
    color: #667eea;
    font-size: 1rem;
    width: 20px;
}

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

/* Hamburger Menu */
/* Hamburger menu removed - no longer needed */

/* Mobile styles for login button only */

/* Hamburger styles removed */

/* Mobile Login Button - Hidden by default */
.mobile-login-btn {
    display: none;
}

/* Non-hero page styling removed */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 20px 50px;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 8rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.98;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero image styles removed - now using background-image */

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #6366f1;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #6366f1;
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* Mission Card */
.mission-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-content h3 {
    color: #6366f1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.mission-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Focus Areas */
.focus-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.focus-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.focus-card:hover::before {
    transform: scaleX(1);
}

.focus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: scale(1.1);
}

.focus-icon i {
    font-size: 1.8rem;
    color: #6366f1;
    transition: color 0.3s ease;
}

.focus-card:hover .focus-icon i {
    color: white;
}

.focus-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.focus-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.vision-icon i {
    font-size: 2rem;
    color: white;
}

.vision-text h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.vision-text p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
}

/* Enhanced Stats */
.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat:hover .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
    transition: color 0.3s ease;
}

.stat:hover .stat-icon i {
    color: white;
}

.stat-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content p {
    color: #64748b;
    font-weight: 600;
    margin: 0;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-section .section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.member-image {
    width: 220px;
    height: 260px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    border-color: #6366f1;
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #6366f1;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.member-testimonial {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    position: relative;
    font-style: italic;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 3px solid #6366f1;
}

.member-testimonial::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 2rem;
    color: #6366f1;
    font-weight: bold;
}

.member-testimonial::after {
    content: '"';
    position: absolute;
    bottom: -15px;
    right: 10px;
    font-size: 2rem;
    color: #6366f1;
    font-weight: bold;
}

/* Team Section Groups */
.team-section-group {
    margin-bottom: 3rem;
}

.team-section-group:last-child {
    margin-bottom: 0;
}

.team-group-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.team-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}


/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

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

.project-card:hover .project-icon {
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.project-icon i {
    font-size: 2rem;
    color: white;
}

.project-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.project-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.project-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Opportunities Section */
.opportunities {
    background: #f8fafc;
}

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

.opportunity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-4px);
}

.opportunity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.opportunity-icon i {
    font-size: 2.5rem;
    color: white;
}

.opportunity-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Donate Section */
.donate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.donate-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.donate-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.donate-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.donate-info li i {
    color: #10b981;
}

.fund-allocation {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.allocation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.allocation-item:last-child {
    border-bottom: none;
}

.percentage {
    font-weight: 700;
    color: #6366f1;
    font-size: 1.2rem;
}

.description {
    color: #64748b;
}

.donate-form-container {
    text-align: center;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    max-width: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h3 {
    margin: 0;
    color: #6366f1;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.footer-tagline {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #6366f1;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

/* Statistics Popup */
.stats-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.stats-popup.show {
    opacity: 1;
    visibility: visible;
}

.stats-popup-content {
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stats-popup.show .stats-popup-content {
    transform: scale(1) translateY(0);
}

.stats-popup-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-popup-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.stats-popup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-popup-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-popup-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-popup-item:hover::before {
    opacity: 1;
}

.stat-popup-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Semi-circle meter styles */
.semi-circle-meter {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.semi-circle-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.semi-circle-bg {
    stroke-dasharray: 157; /* Half circumference of circle with radius 40 */
    stroke-dashoffset: 0;
}

.semi-circle-progress {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.semi-circle-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-popup-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-popup-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stats-popup-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-popup-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Popup Animation Keyframes */
@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popupSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
}

@keyframes numberCountUp {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-popup-number.animating {
    animation: numberCountUp 0.5s ease-out;
}

/* Tablet and Mobile Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet styles - hide navigation menu and hamburger */
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* Tablet Login Button */
    .mobile-login-btn {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        color: #ffffff !important;
        text-decoration: none;
        padding: 0.7rem 0.9rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1002;
        position: relative;
        margin-left: 0.5rem;
    }
    
    .mobile-login-btn:hover {
        background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        color: #ffffff !important;
    }
    
    .mobile-login-btn i {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Mobile styles - hide navigation menu and hamburger */
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* Mobile Login Button */
    .mobile-login-btn {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
        color: #ffffff !important;
        text-decoration: none;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1002;
        position: relative;
        margin-left: 0.5rem;
    }
    
    .mobile-login-btn:hover {
        background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
        color: #ffffff !important;
    }
    
    .mobile-login-btn i {
        font-size: 0.8rem;
    }
    
    
    .nav-container {
        padding: 0 1rem;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .nav-brand {
        margin-right: 0;
    }
    
    .nav-menu {
        margin-left: 0;
    }
    
    .nav-logo {
        height: 40px;
        max-width: 50px;
    }
    
    .website-name {
        height: 24px;
        max-width: 150px;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .nav-tagline {
        font-size: 0.9rem;
    }
    
    .nav-brand {
        gap: 0.75rem;
        padding: 0.25rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
    }
    
    .dropdown {
        position: static;
    }
    
    .dropdown-content {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        background: rgba(99, 102, 241, 0.1) !important;
        margin: 0.5rem 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        border: none !important;
        border-left: 3px solid rgba(99, 102, 241, 0.3) !important;
        z-index: 20 !important;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-content a {
        padding: 1rem 3rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
        color: #cbd5e1 !important;
        font-size: 0.95rem;
    }
    
    .dropdown-content a:hover {
        background: rgba(99, 102, 241, 0.2);
        color: #60a5fa !important;
        text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
    }
    
    .hero {
        padding: 0 20px 50px;
        min-height: 100vh;
        background-attachment: scroll;
        background-position: center 5%;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .donate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-popup-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    .stats-popup-header h2 {
        font-size: 2rem;
    }
    
    .stats-popup-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-popup-number {
        font-size: 2rem;
    }
    
    .semi-circle-meter {
        height: 100px;
    }
    
    .stats-popup-content {
        padding: 2rem;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-brand {
        gap: 0.5rem;
        padding: 0.25rem;
    }
    
    .nav-logo {
        height: 35px;
        max-width: 45px;
    }
    
    .nav-tagline {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex !important;
        padding: 0.25rem;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 6px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        padding: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Team Section Mobile Styles */
    .team-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .team-section .section-header h3 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .team-section .section-header p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-image {
        width: 180px;
        height: 220px;
        margin: 0 auto 1rem;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.375rem;
    }
    
    .member-info p {
        font-size: 0.9rem;
    }
    
    /* Team Section Groups Mobile */
    .team-section-group {
        margin-bottom: 2rem;
    }
    
    .team-group-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}
