/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #faf7f7;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0077B6 0%, #4ecdc4 50%, #45b7d1 100%);
    min-height: 100vh;
    padding-top: 70px; /* Add padding to account for fixed navbar */
}





/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff4757;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 80px;
}

/* Enhanced Hero Section */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #ffa502;
    font-size: 1.2rem;
}

.hero-badge span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.hero-stat {
    text-align: center;
    color: white;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffa502;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Overview Section */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-image {
    position: relative;
}

.overview-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffa502;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mission-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffa502;
    margin-bottom: 2rem;
    position: relative;
}

.mission-highlight i {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #ff4757;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.overview-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    color: #ffa502;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Featured Projects Section */
.featured-projects {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-project {
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-badge.completed {
    background: #2ed573;
    color: white;
}

.project-badge.in-progress {
    background: #22f701;
    color: white;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ffa502;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.project-stat {
    text-align: center;
    flex: 1;
}

.project-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.project-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.featured-cta {
    text-align: center;
}

/* Why Support Us Section */
.why-support {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
}

.support-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.reason-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reason-list {
    list-style: none;
    text-align: left;
}

.reason-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.reason-list i {
    color: #2ed573;
    font-size: 0.9rem;
}

/* Enhanced Donation Section */
.donate-header {
    text-align: center;
    margin-bottom: 2rem;
}

.donate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 213, 115, 0.2);
    border: 1px solid rgba(46, 213, 115, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    color: #2ed573;
    font-weight: 600;
}

.donate-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.donate-message {
    margin: 2rem 0;
}

.message-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffa502;
    position: relative;
}

.message-highlight i {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #ff4757;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.donation-impact {
    margin: 2rem 0;
}

.donation-impact h3 {
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.impact-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.impact-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffa502;
    margin-bottom: 0.5rem;
}

.impact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.donation-options h3 {
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.donation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.donation-btn.custom {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.donation-btn.custom:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.donation-urgency {
    margin: 2rem 0;
}

.urgency-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
}

.urgency-message i {
    color: #ff4757;
    font-size: 2rem;
}

.urgency-message h4 {
    color: #ff4757;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.urgency-message p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Gallery Introduction Section */
.gallery-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.intro-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* Featured Stories Section */
.featured-stories {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
}

.stories-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.story-highlight {
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.story-highlight .story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-highlight .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-highlight:hover .story-image img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 90, 160, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-highlight:hover .story-overlay {
    opacity: 1;
}

.story-overlay i {
    font-size: 3rem;
    color: white;
}

.story-highlight .story-content {
    padding: 1.5rem;
}

.story-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-highlight h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-highlight p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-stat {
    text-align: center;
    flex: 1;
}

.story-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.story-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-actions {
    display: flex;
    gap: 1rem;
}

/* Impact Metrics Section */
.impact-metrics {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(44, 90, 160, 0.1) 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.metric-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Behind the Scenes Section */
.behind-scenes {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.process-step h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

/* Impact Timeline Section */
.impact-timeline {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(44, 90, 160, 0.1) 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2c5aa0, #ffd700);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
    border: 4px solid #2c5aa0;
}

.timeline-item:nth-child(odd)::before {
    right: -60px;
}

.timeline-item:nth-child(even)::before {
    left: -60px;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    margin-bottom: 1rem;
}

.timeline-date .year {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.timeline-date .month {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
    min-height: 120px;
}

.timeline-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 8px;
    display: block;
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

/* Community Voices Section */
.community-voices {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.voice-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.voice-image {
    height: 200px;
    overflow: hidden;
}

.voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.voice-card:hover .voice-image img {
    transform: scale(1.05);
}

.voice-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.voice-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
}

.voice-author {
    text-align: center;
}

.voice-author h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.voice-author span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.voice-author .location {
    color: #ffd700;
    font-weight: 600;
}

/* Enhanced CTA Section */
.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cta-main {
    padding: 2.5rem;
    text-align: center;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-sidebar .cta-card {
    padding: 1.5rem;
    text-align: center;
}

.cta-sidebar h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cta-sidebar p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Video Modal Styles */
.video-container {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.video-description {
    padding: 1rem 0;
    text-align: center;
}

.video-description h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-description p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 65px;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ff4757;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-weight: bold;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff4757;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.donate-btn {
    background: linear-gradient(45deg, #2ed573, #1dd1a1);
    color: white !important;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(46, 213, 115, 0.3);
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 213, 115, 0.4);
    background: linear-gradient(45deg, #1dd1a1, #2ed573);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, #2ed573, #1dd1a1);
    color: white;
    box-shadow: 0 5px 15px rgba(46, 213, 115, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 213, 115, 0.6);
}

.btn-outline {
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
}

.btn-outline:hover {
    background: #ff4757;
    color: white;
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.05);
}

/* Mission Section */
.mission {
    background: rgba(255, 255, 255, 0.05);
}

/* CEO Section */
.ceo {
    background: rgba(255, 255, 255, 0.05);
}

/* Team Section */
.team {
    background: rgba(255, 255, 255, 0.05);
}

/* Impact Section */
.impact {
    background: rgba(255, 255, 255, 0.05);
}

.about-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c5aa0, #1e4080);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tab-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.tab-btn.active::before {
    opacity: 1;
}

.tab-btn:hover {
    color: white;
    transform: translateY(-1px);
}

.tab-btn:hover::before {
    opacity: 0.8;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.ceo-quote {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #2c5aa0;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 10px;
    position: relative;
}

.ceo-quote i {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.ceo-quote p {
    font-style: italic;
    color: #2c5aa0;
    font-weight: 500;
    margin: 0;
}

/* Team Section Styles */
.team-photo {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.02);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-photo:hover img {
    transform: scale(1.05);
}

.team-quote {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(30, 64, 128, 0.1));
    border-left: 4px solid #e74c3c;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
}

.team-quote i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.team-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.ceo-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2c5aa0;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.impact-card h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-top: 1rem;
}

.video-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.video-link:hover {
    color: #e74c3c;
    transform: translateX(5px);
}

.video-link i {
    font-size: 0.8rem;
}

/* Updates & Projects Section */
.updates {
    background: rgba(255, 255, 255, 0.05);
}

.updates-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.update-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.update-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.update-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.update-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.update-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.update-category {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    width: fit-content;
}

.update-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.update-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.update-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.update-stats i {
    color: #2c5aa0;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    padding: 2rem;
    position: relative;
}

.project-progress {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: bold;
}

.project-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.detail-item i {
    color: #2c5aa0;
    width: 20px;
}

/* Completed Projects */
.completed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.completed-card {
    padding: 2rem;
    position: relative;
}

.completed-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.completed-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-right: 100px;
}

.completed-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.completed-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.completed-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
}

.completed-stats .stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Events Section */
.events {
    background: rgba(255, 255, 255, 0.05);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.event-date {
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-content h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.event-location {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-location i {
    margin-right: 0.5rem;
}

/* Gallery Section */
.gallery {
    background: rgba(255, 255, 255, 0.05);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    min-width: 300px;
    height: 250px;
    margin-right: 1rem;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: #333;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 90, 160, 0.1), rgba(30, 64, 128, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.contact-note {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), rgba(30, 64, 128, 0.05));
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.form-header h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.modern-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for submit button */
button[aria-busy="true"] {
    position: relative;
    color: transparent;
}

button[aria-busy="true"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
}

.form-group textarea + .input-icon {
    top: 2rem;
    transform: none;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
}

.form-note i {
    color: #27ae60;
}

/* Contact CTA Section */
.contact-cta {
    margin-top: 4rem;
}

.cta-card {
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

.cta-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Current Projects Section */
.current-projects {
    background: rgba(255, 255, 255, 0.05);
}

.projects-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-highlight-card {
    text-align: center;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.project-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
}

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.project-highlight-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.project-highlight-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.completed {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.status-badge.in-progress {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.project-location i {
    color: #2c5aa0;
}

.project-goal {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Donate Section */
.donate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.donate-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.donate-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.donation-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.donation-btn:hover,
.donation-btn.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.donation-note {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.donation-note i {
    color: #ff6b6b;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    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-section h3 {
    margin-bottom: 1rem;
    color: #3498db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e4080;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Recent Projects Showcase */
.recent-projects {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-highlight {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-highlight:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.project-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.project-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #34495e;
    font-size: 14px;
}

.project-stat i {
    color: #e74c3c;
    font-size: 16px;
}

/* Community Testimonials */
.community-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(192, 57, 43, 0.05) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    color: #e74c3c;
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e74c3c;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: #7f8c8d;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.author-info .location {
    color: #e74c3c;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Adjust padding for mobile navbar height */
    }
    
    .navbar {
        height: 60px;
    }
    
    /* Hero Section Mobile */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Overview Section Mobile */
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .overview-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Featured Projects Mobile */
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .project-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Why Support Mobile */
    .support-reasons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reason-card {
        padding: 1.5rem;
    }
    
    /* Donation Mobile */
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .donation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .donation-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .urgency-message {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar.scrolled {
        height: 55px;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        overflow-y: auto;
        z-index: 999;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: rgba(44, 90, 160, 0.1);
        color: #2c5aa0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .donate-btn {
        margin: 1rem 2rem;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 30px;
        width: calc(100% - 4rem);
        text-align: center;
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        text-align: center;
    }

    .ceo-photo {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .ceo-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat {
        text-align: center;
        padding: 1.5rem;
    }

    /* Gallery Mobile */
    .gallery-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .gallery-item {
        min-width: 280px;
        height: 200px;
        margin: 0;
    }

    .gallery-nav {
        display: none;
    }

    /* Impact Grid Mobile */
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .impact-card {
        padding: 1.5rem;
        text-align: center;
    }

    /* Projects Mobile */
    .projects-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-highlight-card {
        padding: 2rem 1.5rem;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Donation Mobile */
    .donation-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .donation-btn {
        width: 100%;
        max-width: 200px;
    }

    /* Tab Buttons Mobile */
    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        max-width: 100%;
        margin: 0 1rem 2rem;
        padding: 0.8rem;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        margin: 0.2rem 0;
        padding: 1.2rem 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .carousel-nav,
    .gallery-nav {
        display: none;
    }

    .gallery-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-item {
        min-width: 250px;
        margin-bottom: 1rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .donation-options {
        flex-direction: column;
        align-items: center;
    }

    .updates-grid,
    .projects-grid,
    .completed-grid,
    .projects-highlight {
        grid-template-columns: 1fr;
    }

    .update-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .completed-stats {
        grid-template-columns: 1fr;
    }

    .completed-card h3 {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 55px;
    }
    
    .navbar.scrolled {
        height: 50px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .ceo-photo {
        width: 200px;
        height: 200px;
    }

    /* Small screen gallery */
    .gallery-item {
        min-width: 250px;
        height: 180px;
    }

    /* Small screen buttons */
    .hero-buttons .btn {
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .donation-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .impact-card {
        padding: 1.5rem;
    }
    
    .project-highlight-card {
        padding: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding: 1.5rem 0;
        margin: 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .donate-btn {
        margin: 0.8rem 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: calc(100% - 3rem);
    }
    
    .mobile-menu span {
        width: 25px;
        height: 2.5px;
        margin: 3px 0;
    }
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    /* Better touch targets */
    .btn, .donation-btn, .tab-btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Improved spacing for touch */
    .nav-link {
        padding: 1rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Better form inputs */
    .form-group input,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Improved gallery touch */
    .gallery-item {
        cursor: pointer;
        touch-action: manipulation;
    }

    /* Better carousel navigation */
    .carousel-nav {
        min-width: 44px;
        min-height: 44px;
        font-size: 1.2rem;
    }

    /* Gallery Introduction Responsive */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Featured Stories Responsive */
    .stories-highlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-highlight .story-image {
        height: 200px;
    }

    .story-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .story-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Impact Metrics Responsive */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .metric-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    /* Behind the Scenes Responsive */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Timeline Responsive */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 60px);
        left: 60px !important;
        text-align: left !important;
    }

    .timeline-item::before {
        left: -50px !important;
    }

    /* Community Voices Responsive */
    .voices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .voice-image {
        height: 150px;
    }

    /* Enhanced CTA Responsive */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .cta-main {
        padding: 1.5rem;
    }
    
    /* Recent Projects Responsive */
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-highlight {
        flex-direction: column;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-author img {
        width: 80px;
        height: 80px;
    }
    
    .volunteer-visual img,
    .partnership-visual img {
        height: 180px;
    }
}

/* Impact & Success Stories Section */
.impact-stories {
    background: rgba(255, 255, 255, 0.05);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.metric-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.success-stories h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5aa0;
    font-size: 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.story-content h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-location {
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Volunteer & Partnership Section */
.volunteer-partnership {
    background: rgba(255, 255, 255, 0.05);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.volunteer-section,
.partnership-section {
    padding: 2.5rem;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.volunteer-section h3,
.partnership-section h3 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.volunteer-section p,
.partnership-section p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.opportunity-list {
    margin-bottom: 2rem;
}

.opportunity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.opportunity-item i {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.opportunity-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.opportunity-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.partnership-types {
    margin-bottom: 2rem;
}

.partnership-type {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.partnership-type h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.partnership-type p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Our Services Section */
.our-services {
    background: rgba(255, 255, 255, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #27ae60;
    font-size: 1rem;
}

/* Our Goals Section */
.our-goals {
    background: rgba(255, 255, 255, 0.05);
}

.goals-content {
    padding: 3rem;
    text-align: center;
}

.goals-header {
    margin-bottom: 2rem;
}

.goals-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.goals-content h3 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.goals-description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.goals-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.goal-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.goal-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.goal-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.goals-impact h4 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.impact-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.impact-tag {
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.impact-tag:hover {
    transform: scale(1.05);
}

/* Educational Content Section */
.educational-content {
    background: rgba(255, 255, 255, 0.05);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    padding: 2rem;
    text-align: center;
}

.education-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.education-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.education-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.education-facts {
    list-style: none;
    padding: 0;
    text-align: left;
}

.education-facts li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.education-facts li:last-child {
    border-bottom: none;
}

/* Financial Transparency Section */
.financial-transparency {
    background: rgba(255, 255, 255, 0.05);
}

.transparency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.transparency-info,
.impact-per-dollar {
    padding: 2.5rem;
}

.transparency-info h3,
.impact-per-dollar h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.budget-breakdown {
    margin-bottom: 2rem;
}

.budget-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.budget-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.budget-bar {
    flex: 2;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.budget-fill {
    height: 100%;
    background: linear-gradient(45deg, #2c5aa0, #1e4080);
    border-radius: 4px;
    transition: width 1s ease;
}

.budget-percentage {
    color: #e74c3c;
    font-weight: bold;
    min-width: 40px;
}

.tax-info {
    background: rgba(44, 90, 160, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.tax-info h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tax-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.impact-items {
    display: grid;
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.impact-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    min-width: 60px;
}

.impact-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Enhanced CTA Section */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    color: #2c5aa0;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #c0392b;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.modal-content label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    cursor: pointer;
}

.modal-content input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* New Visual Elements */
.volunteer-visual,
.partnership-visual {
    margin: 1.5rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(46, 213, 115, 0.1));
}

.volunteer-visual img,
.partnership-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 20%;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.volunteer-visual:hover img,
.partnership-visual:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.2);
}

.volunteer-visual::before,
.partnership-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(46, 213, 115, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.volunteer-visual:hover::before,
.partnership-visual:hover::before {
    opacity: 1;
}

/* MTN MoMo Modal Styles */
.momo-details {
    padding: 1rem 0;
}

.momo-info {
    margin-bottom: 2rem;
}

.momo-number {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(46, 213, 115, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 71, 87, 0.2);
}

.momo-number h4 {
    color: #ff4757;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2ed573;
    background: rgba(46, 213, 115, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 2px solid rgba(46, 213, 115, 0.3);
}

.copy-btn {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.momo-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.momo-instructions h4 {
    color: #ffa502;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.momo-instructions ol {
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.momo-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.momo-instructions strong {
    color: #ffa502;
}

.momo-note {
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.1), rgba(255, 71, 87, 0.1));
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffa502;
}

.momo-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.momo-note i {
    color: #ffa502;
    margin-right: 0.5rem;
}

.momo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.momo-actions .btn {
    min-width: 140px;
}

@media (max-width: 350px) {
    .phone-display {
        display: flex;
        flex-direction: column;
        align-items: stretch; /* full-width on small screens */
        gap: 1rem; /* more breathing space */
        padding: 1rem;
        width: 100%;
    }

    .phone-number {
        font-size: 1.1rem; /* slightly smaller for phones */
        padding: 0.6rem 1rem;
        width: 100%; /* full width on mobile */
        box-sizing: border-box;
    }

    .momo-actions {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .momo-actions .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem;
        box-sizing: border-box;
    }
}


/* Designer Credit Styles */
.designer-credit {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.designer-credit strong {
    color: #ffa502;
    font-weight: 600;
}

.designer-credit:hover strong {
    color: #ff4757;
    transition: color 0.3s ease;
}

/* Gallery Styles */
.gallery-hero {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.8), rgba(46, 213, 115, 0.8)), url('images/Gallery/DSC_0026_edited.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.gallery-categories {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(46, 213, 115, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.category-card.active {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(46, 213, 115, 0.2));
    border: 2px solid #ff4757;
}

.category-icon {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: #ff4757;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.photo-gallery {
    padding: 4rem 0;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-controls {
    display: flex;
    gap: 1rem;
}

.gallery-controls .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.gallery-controls .btn.active {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-grid.masonry-layout {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(46, 213, 115, 0.1));
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.9), rgba(46, 213, 115, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.gallery-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-stats {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.stat-number {
    color: #ffa502;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 71, 87, 0.8);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 2rem;
    color: white;
}

.lightbox-info h3 {
    color: #ffa502;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.lightbox-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 71, 87, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 71, 87, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-controls {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
} 

/* Flying Animation for Gallery Images */
.gallery-item {
    opacity: 0;
    transform: translateY(100px) rotate(5deg);
    animation: flyIn 0.8s ease-out forwards;
}

@keyframes flyIn {
    0% {
        opacity: 0;
        transform: translateY(100px) rotate(5deg) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-20px) rotate(2deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Staggered animation delays for each gallery item */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }
.gallery-item:nth-child(15) { animation-delay: 1.5s; }
.gallery-item:nth-child(16) { animation-delay: 1.6s; }
.gallery-item:nth-child(17) { animation-delay: 1.7s; }
.gallery-item:nth-child(18) { animation-delay: 1.8s; }
.gallery-item:nth-child(19) { animation-delay: 1.9s; }
.gallery-item:nth-child(20) { animation-delay: 2.0s; }
.gallery-item:nth-child(21) { animation-delay: 2.1s; }
.gallery-item:nth-child(22) { animation-delay: 2.2s; }
.gallery-item:nth-child(23) { animation-delay: 2.3s; }
.gallery-item:nth-child(24) { animation-delay: 2.4s; }
.gallery-item:nth-child(25) { animation-delay: 2.5s; }
.gallery-item:nth-child(26) { animation-delay: 2.6s; }
.gallery-item:nth-child(27) { animation-delay: 2.7s; }
.gallery-item:nth-child(28) { animation-delay: 2.8s; }
.gallery-item:nth-child(29) { animation-delay: 2.9s; }
.gallery-item:nth-child(30) { animation-delay: 3.0s; }
.gallery-item:nth-child(31) { animation-delay: 3.1s; }
.gallery-item:nth-child(32) { animation-delay: 3.2s; }
.gallery-item:nth-child(33) { animation-delay: 3.3s; }
.gallery-item:nth-child(34) { animation-delay: 3.4s; }
.gallery-item:nth-child(35) { animation-delay: 3.5s; }
.gallery-item:nth-child(36) { animation-delay: 3.6s; }
.gallery-item:nth-child(37) { animation-delay: 3.7s; }
.gallery-item:nth-child(38) { animation-delay: 3.8s; }
.gallery-item:nth-child(39) { animation-delay: 3.9s; }
.gallery-item:nth-child(40) { animation-delay: 4.0s; }
.gallery-item:nth-child(41) { animation-delay: 4.1s; }
.gallery-item:nth-child(42) { animation-delay: 4.2s; }
.gallery-item:nth-child(43) { animation-delay: 4.3s; }
.gallery-item:nth-child(44) { animation-delay: 4.4s; }
.gallery-item:nth-child(45) { animation-delay: 4.5s; }
.gallery-item:nth-child(46) { animation-delay: 4.6s; }
.gallery-item:nth-child(47) { animation-delay: 4.7s; }

/* Hover effect with flying animation */
.gallery-item:hover {
    animation: flyHover 0.6s ease-out;
}

@keyframes flyHover {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05) rotate(2deg);
    }
    100% {
        transform: translateY(-10px) scale(1.02) rotate(0deg);
    }
}

/* Category cards flying animation */
.category-card {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.category-card:nth-child(1) { animation-delay: 0.2s; }
.category-card:nth-child(2) { animation-delay: 0.4s; }
.category-card:nth-child(3) { animation-delay: 0.6s; }
.category-card:nth-child(4) { animation-delay: 0.8s; }
.category-card:nth-child(5) { animation-delay: 1.0s; }
.category-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Stats cards flying animation */
.stat-card {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInFromBottom 0.8s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }
.stat-card:nth-child(4) { animation-delay: 0.9s; }

    @keyframes slideInFromBottom {
        0% {
            opacity: 0;
            transform: translateY(50px) scale(0.8);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    /* Specific image positioning for better face visibility */
    .gallery-item:nth-child(5) img {
        object-position: center 25% !important;
    }
    
    .gallery-item:nth-child(11) img {
        object-position: center 30% !important;
    }

/* Sponsors Section Styles */
.sponsors {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 50%, rgba(69, 183, 209, 0.1) 100%);
    padding: 4rem 0;
}

.sponsors-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sponsors-intro {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.sponsors-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.sponsors-icon i {
    font-size: 2rem;
    color: white;
}

.sponsors-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsors-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
}

.sponsor-logo {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sponsor-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo img {
    transform: scale(1.1);
}

.sponsor-info {
    text-align: center;
    flex: 1;
}

.sponsor-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.sponsor-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.sponsor-type {
    display: flex;
    justify-content: center;
}

.sponsor-badge {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.sponsors-cta {
    text-align: center;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.sponsors-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsors-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #ff6b6b;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
}

.benefit-item span {
    font-weight: 600;
    color: #333;
}

.sponsor-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.sponsor-actions .btn {
    min-width: 200px;
}

/* Responsive Design for Sponsors */
@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sponsor-card {
        padding: 1.5rem;
    }
    
    .sponsor-logo {
        width: 100px;
        height: 100px;
    }
    
    .sponsors-cta {
        padding: 2rem 1rem;
    }
    
    .sponsors-cta h3 {
        font-size: 2rem;
    }
    
    .sponsor-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sponsor-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .sponsor-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .sponsors-intro h3 {
        font-size: 1.5rem;
    }
    
    .sponsors-intro p {
        font-size: 1rem;
    }
    
    .sponsor-info h4 {
        font-size: 1.3rem;
    }
    
    .sponsors-cta h3 {
        font-size: 1.8rem;
    }
    
    .sponsors-cta p {
        font-size: 1rem;
    }
}

/* Clean Sponsor Display Styles */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.sponsor-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sponsor-card:hover img {
    transform: scale(1.05);
}

/* Sponsors Showcase for About Page */
.sponsors-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.sponsor-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.sponsor-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sponsor-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sponsor-card {
        padding: 1rem;
        min-height: 120px;
    }
    
    .sponsor-card img {
        max-height: 80px;
    }
    
    .sponsors-showcase {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .sponsor-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sponsor-card {
        min-height: 100px;
    }
    
    .sponsor-card img {
        max-height: 60px;
    }
}