/* Apple-inspired CSS with seamless scrolling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure no borders or outlines on sections */
section {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 3rem;
}

.nav-container .logo {
    flex-shrink: 0;
}

.nav-container .nav-links-left {
    flex-shrink: 0;
}

.nav-container .nav-links-right {
    margin-left: auto;
}

.logo span {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #3CA1FF;
    letter-spacing: -0.02em;
}

.nav-links-left {
    display: flex;
    gap: 2.5rem;
    margin-left: 5rem;
}

.nav-links-right {
    display: flex;
    gap: 2.5rem;
}

.nav-links-left a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 1.3rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links-right a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.instagram-link {
    font-size: 1.3rem !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 1;
    color: #E4405F !important;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
    color: #3CA1FF;
}

.nav-links-left a::after,
.nav-links-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3CA1FF;
    transition: width 0.3s ease;
}

.nav-links-left a:hover::after,
.nav-links-left a.active::after,
.nav-links-right a:hover::after,
.nav-links-right a.active::after {
    width: 100%;
}

.nav-links-left a.active,
.nav-links-right a.active {
    color: #3CA1FF;
}

/* Hero Section */
.hero {
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f8fafc 85%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background-color: #3CA1FF;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(60, 161, 255, 0.3);
}

.cta-button:hover {
    background-color: #2B8CE6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(60, 161, 255, 0.4);
}

/* Hero Visual Elements */
.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: rgba(60, 161, 255, 0.1);
    border: 2px solid rgba(60, 161, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #3CA1FF;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.element.vr {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element.ar {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element.ai {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.element.vr2 {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
    font-size: 1rem;
    padding: 15px;
}

.element.ar2 {
    top: 75%;
    left: 20%;
    animation-delay: 3s;
    font-size: 1rem;
    padding: 15px;
}

.element.ai2 {
    top: 30%;
    right: 5%;
    animation-delay: 5s;
    font-size: 1rem;
    padding: 15px;
}

.element.vr3 {
    top: 80%;
    right: 40%;
    animation-delay: 1.5s;
    font-size: 1rem;
    padding: 15px;
}

.element.ar3 {
    top: 10%;
    left: 50%;
    animation-delay: 3.5s;
    font-size: 1rem;
    padding: 15px;
}

.element.ai3 {
    top: 65%;
    left: 5%;
    animation-delay: 2.5s;
    font-size: 1rem;
    padding: 15px;
}

.element.vr4 {
    top: 25%;
    left: 85%;
    animation-delay: 4.5s;
    font-size: 1rem;
    padding: 15px;
}

.element.ar4 {
    top: 85%;
    left: 60%;
    animation-delay: 0.5s;
    font-size: 1rem;
    padding: 15px;
}

.element.ai4 {
    top: 5%;
    left: 30%;
    animation-delay: 3.8s;
    font-size: 1rem;
    padding: 15px;
}

.element.vr5 {
    top: 50%;
    right: 30%;
    animation-delay: 2.2s;
    font-size: 1rem;
    padding: 15px;
}

.element.ar5 {
    top: 35%;
    left: 15%;
    animation-delay: 4.8s;
    font-size: 1rem;
    padding: 15px;
}

.element.ai5 {
    top: 70%;
    right: 10%;
    animation-delay: 1.8s;
    font-size: 1rem;
    padding: 15px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: linear-gradient(180deg, #e2e8f0 0%, #f1f5f9 15%, #f8fafc 30%, #ffffff 50%, #f8fafc 70%, #f1f5f9 85%, #e2e8f0 95%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}


/* Blue background elements for mission section */
.mission::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, #e2e8f0 0%, #e2e8f0 5%, #f1f5f9 15%, #f8fafc 30%, #ffffff 50%, #f8fafc 70%, #f1f5f9 85%, #e2e8f0 95%, #dcfce7 100%),
                radial-gradient(circle at 20% 30%, rgba(60, 161, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(60, 161, 255, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.mission::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px;
    background: linear-gradient(45deg, transparent 0%, rgba(60, 161, 255, 0.03) 25%, transparent 50%, rgba(60, 161, 255, 0.02) 75%, transparent 100%),
                linear-gradient(180deg, transparent 0%, transparent 80%, #dcfce7 100%);
    z-index: 0;
    pointer-events: none;
}

.mission-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Floating blue geometric shapes */
.mission-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.mission-shape {
    position: absolute;
    background: rgba(60, 161, 255, 0.1);
    border: 2px solid rgba(60, 161, 255, 0.15);
    border-radius: 50%;
    animation: floatMission 8s ease-in-out infinite;
}

.mission-shape.circle-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.mission-shape.circle-2 {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.mission-shape.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.mission-shape.circle-4 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 20%;
    animation-delay: 1s;
}

.mission-shape.circle-5 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 80%;
    animation-delay: 3s;
}

.mission-shape.square-1 {
    width: 40px;
    height: 40px;
    background: rgba(60, 161, 255, 0.08);
    border: 2px solid rgba(60, 161, 255, 0.12);
    border-radius: 8px;
    top: 20%;
    left: 70%;
    animation-delay: 1.5s;
    animation: floatMission 6s ease-in-out infinite;
}

.mission-shape.square-2 {
    width: 60px;
    height: 60px;
    background: rgba(60, 161, 255, 0.06);
    border: 2px solid rgba(60, 161, 255, 0.1);
    border-radius: 12px;
    top: 80%;
    left: 60%;
    animation-delay: 3.5s;
    animation: floatMission 7s ease-in-out infinite;
}

.mission-shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(60, 161, 255, 0.1);
    background: none;
    border-radius: 0;
    top: 35%;
    left: 85%;
    animation-delay: 2.5s;
    animation: floatMission 9s ease-in-out infinite;
}

@keyframes floatMission {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg); 
        opacity: 0.8;
    }
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-text-content {
    text-align: left;
}

.mission-text-content h2 {
    text-align: left;
    margin-bottom: 0;
    margin-top: -1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.mission-text-content .mission-text {
    text-align: left;
    margin-bottom: 0;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.mission-text {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 4rem;
    font-weight: 400;
}

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

.highlight {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight:hover {
    transform: translateY(-8px);
    background: rgba(248, 250, 252, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    display: none;
}

.highlight h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.highlight p {
    color: #6e6e73;
    font-size: 1rem;
    line-height: 1.6;
}

/* Who We Are Section */
.who-we-are {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
}

.who-we-are-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.who-we-are-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.who-we-are-intro {
    font-size: 1.125rem;
    color: #6e6e73;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

.who-we-are-item {
    background: rgba(248, 250, 252, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.who-we-are-item:hover {
    transform: translateY(-5px);
    background: rgba(248, 250, 252, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.who-we-are-item h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.who-we-are-item p {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Impact Section */
.impact {
    padding: 120px 0;
    background: linear-gradient(180deg, #dcfce7 0%, #e6f7e6 20%, #f0fdf4 40%, #f7fef7 60%, #fafafa 80%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Green background elements for impact section */
.impact::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, #dcfce7 0%, #dcfce7 5%, #e6f7e6 20%, #f0fdf4 40%, #f7fef7 60%, #fafafa 80%, #ffffff 100%),
                radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.impact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px;
    background: linear-gradient(45deg, transparent 0%, rgba(16, 185, 129, 0.03) 25%, transparent 50%, rgba(16, 185, 129, 0.02) 75%, transparent 100%),
                linear-gradient(180deg, transparent 0%, transparent 80%, #ffffff 100%);
    z-index: 0;
    pointer-events: none;
}

.impact-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Floating green geometric shapes */
.impact-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.impact-shape {
    position: absolute;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    animation: floatImpact 8s ease-in-out infinite;
}

.impact-shape.circle-1 {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.impact-shape.circle-2 {
    width: 65px;
    height: 65px;
    top: 30%;
    right: 12%;
    animation-delay: 2.5s;
}

.impact-shape.circle-3 {
    width: 110px;
    height: 110px;
    top: 65%;
    left: 3%;
    animation-delay: 4.5s;
}

.impact-shape.circle-4 {
    width: 75px;
    height: 75px;
    top: 75%;
    right: 18%;
    animation-delay: 1.2s;
}

.impact-shape.circle-5 {
    width: 55px;
    height: 55px;
    top: 45%;
    left: 82%;
    animation-delay: 3.2s;
}

.impact-shape.square-1 {
    width: 45px;
    height: 45px;
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    top: 18%;
    left: 72%;
    animation-delay: 1.8s;
    animation: floatImpact 6.5s ease-in-out infinite;
}

.impact-shape.square-2 {
    width: 65px;
    height: 65px;
    background: rgba(16, 185, 129, 0.06);
    border: 2px solid rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    top: 85%;
    left: 65%;
    animation-delay: 3.8s;
    animation: floatImpact 7.5s ease-in-out infinite;
}

.impact-shape.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(16, 185, 129, 0.1);
    background: none;
    border-radius: 0;
    top: 38%;
    left: 88%;
    animation-delay: 2.8s;
    animation: floatImpact 9.5s ease-in-out infinite;
}

.impact-shape.diamond {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.09);
    border: 2px solid rgba(16, 185, 129, 0.13);
    transform: rotate(45deg);
    border-radius: 8px;
    top: 55%;
    left: 15%;
    animation-delay: 0.8s;
    animation: floatImpact 8.5s ease-in-out infinite;
}

@keyframes floatImpact {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-18px) rotate(180deg); 
        opacity: 0.8;
    }
}

.impact-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.impact-intro {
    font-size: 1.125rem;
    color: #6e6e73;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

.impact-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.impact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.impact-item h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.impact-item p {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Our Funders Section */
.funders {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.funders::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 5%, #f8fafc 30%, #ffffff 100%);
    z-index: 0;
    pointer-events: none;
}

.funders-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.funders-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.funders-intro {
    font-size: 1.125rem;
    color: #6e6e73;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

.funder-item {
    background: rgba(248, 250, 252, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.funder-item:hover {
    transform: translateY(-5px);
    background: rgba(248, 250, 252, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.funder-logo h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.funder-item p {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Hero Section */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    padding: 60px 0 40px 0;
}


.contact-hero-title {
    font-family: 'Baskerville', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #ffffff;
    position: relative;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-content h2 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: 1.125rem;
    color: #6e6e73;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(248, 250, 252, 0.8);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.contact-info {
    padding: 2rem 0;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    background: rgba(248, 250, 252, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(248, 250, 252, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-item h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-info-item p {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3CA1FF;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(60, 161, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #3CA1FF;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(60, 161, 255, 0.3);
    align-self: center;
    min-width: 200px;
}

.submit-button:hover {
    background-color: #2B8CE6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(60, 161, 255, 0.4);
}

/* Footer */
.footer {
    background-color: #1d1d1f;
    color: #f5f5f7;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: #a1a1a6;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section h4 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #a1a1a6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #f5f5f7;
}

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 2rem;
    text-align: center;
    color: #a1a1a6;
    font-size: 0.9rem;
}

/* Green Accent Elements */
.hero-title::after {
    display: none;
}

.highlight {
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.highlight:hover {
    border-top: 3px solid #3CA1FF;
}

.impact-item {
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.impact-item:hover {
    border-top: 3px solid #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Hide some floating shapes on mobile for better performance */
    .mission-shape.circle-3,
    .mission-shape.circle-5,
    .mission-shape.square-2,
    .mission-shape.triangle {
        display: none;
    }
    
    /* Adjust remaining shapes for mobile */
    .mission-shape.circle-1 {
        width: 60px;
        height: 60px;
        top: 10%;
        left: 5%;
    }
    
    .mission-shape.circle-2 {
        width: 50px;
        height: 50px;
        top: 20%;
        right: 10%;
    }
    
    .mission-shape.circle-4 {
        width: 55px;
        height: 55px;
        top: 75%;
        right: 15%;
    }
    
    .mission-shape.square-1 {
        width: 35px;
        height: 35px;
        top: 15%;
        left: 75%;
    }
    
    .mission-text-content {
        text-align: center;
    }
    
    .mission-text-content h2 {
        text-align: center;
    }
    
    .mission-text-content .mission-text {
        text-align: center;
    }
    
    .mission-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .who-we-are-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide some floating green shapes on mobile for better performance */
    .impact-shape.circle-3,
    .impact-shape.circle-5,
    .impact-shape.square-2,
    .impact-shape.triangle,
    .impact-shape.diamond {
        display: none;
    }
    
    /* Adjust remaining green shapes for mobile */
    .impact-shape.circle-1 {
        width: 70px;
        height: 70px;
        top: 8%;
        left: 5%;
    }
    
    .impact-shape.circle-2 {
        width: 55px;
        height: 55px;
        top: 25%;
        right: 8%;
    }
    
    .impact-shape.circle-4 {
        width: 60px;
        height: 60px;
        top: 80%;
        right: 12%;
    }
    
    .impact-shape.square-1 {
        width: 40px;
        height: 40px;
        top: 15%;
        left: 78%;
    }
    
    .funders-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero {
        min-height: 50vh;
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mission,
    .who-we-are,
    .impact,
    .contact {
        padding: 80px 0;
    }
    
    .highlight,
    .who-we-are-item,
    .impact-item,
    .funder-item {
        padding: 1.5rem;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Focus states for accessibility */
.cta-button:focus,
.submit-button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3CA1FF;
    outline-offset: 2px;
}

/* Baskerville font for specific headings */
.mission-content h2,
.highlight h3,
.who-we-are-content h2,
.who-we-are-item h3,
.impact-content h2,
.impact-item h3,
.funders-content h2,
.funder-logo h3 {
    font-family: 'Baskerville', 'Times New Roman', serif !important;
}

/* Projects Section */
.projects {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}


.projects-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.project-item {
    background: rgba(248, 250, 252, 0.8);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    background: rgba(248, 250, 252, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Smaller project item styling */
.project-item-small {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem !important;
}

.project-item-small .project-header h2 {
    font-size: 2rem !important;
}

.project-item-small .project-description p {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
}

/* In Progress status styling */
.project-status-in-progress {
    background-color: #f59e0b !important;
    color: white !important;
}

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

.project-header h2 {
    font-family: 'Baskerville', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.project-status {
    background-color: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-description p {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.project-highlight {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-highlight h4 {
    font-family: 'Baskerville', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.project-highlight p {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Contact Options Styling */
.contact-options {
    max-width: 800px;
    margin: 0 auto;
}

.contact-option {
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-option:last-child {
    border-bottom: none;
}

.contact-option-header {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    gap: 1rem;
}

.contact-option-icon {
    font-size: 1.2rem;
    color: #6b7280;
    transition: transform 0.3s ease;
    min-width: 20px;
}

.contact-option.active .contact-option-icon {
    transform: rotate(180deg);
}

.contact-option-content h3 {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.contact-option-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-option-form {
    padding: 0 0 2rem 0;
    border-top: 1px solid #f3f4f6;
    margin-top: 1rem;
    padding-top: 2rem;
}

.contact-option:hover .contact-option-content h3 {
    color: #3CA1FF;
}

.contact-option:hover .contact-option-icon {
    color: #3CA1FF;
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-links-left a,
    .nav-links-right a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-links-left a,
    .nav-links-right a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1rem;
        gap: 1rem;
    }
    
    .nav-links-left a,
    .nav-links-right a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Mobile Navigation - Single row layout */
@media (max-width: 600px) {
    .nav {
        padding: 1rem 0;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    /* Logo left */
    .logo {
        font-size: clamp(1rem, 2.5vw, 1.8rem) !important;
    }
    
    /* Projects/Contact right */
    .nav-links-right {
        display: flex;
        gap: 1rem;
    }
    
    /* Hide Mission/Impact/Funders on mobile */
    .nav-links-left {
        display: none;
    }
    
    .nav-links-right a {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo {
        font-size: clamp(0.8rem, 2vw, 1.4rem) !important;
    }
    
    .nav-links-right {
        gap: 0.8rem;
    }
    
    .nav-links-right a {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Mobile title adjustments */
@media (max-width: 600px) {
    .hero-title-final {
        white-space: normal !important;
        line-height: 1.3 !important;
        max-width: 100% !important;
        font-size: clamp(1.8rem, 5.5vw, 3rem) !important;
    }
    
    .hero-title-above {
        max-width: 95% !important;
        left: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 3.8vw, 2.2rem) !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .hero-title-final {
        font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 2rem) !important;
        line-height: 1.3 !important;
    }
}

/* Projects page mobile header and content positioning */
@media (max-width: 600px) {
    /* Make projects page mobile header identical to main page */
    .projects .nav {
        background-color: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none !important;
        position: relative !important;
    }
    
    /* Lower the hero content below the header */
    .projects .hero {
        padding-top: 120px !important;
    }
    
    .projects .hero-title-above {
        top: 15% !important;
    }
    
    .projects .hero-gif {
        top: 25% !important;
        bottom: 20% !important;
    }
    
    .projects .hero-subtitle-below {
        top: 85% !important;
    }
    
    /* Make Our Projects title HUGE on mobile */
    .projects .hero-title-final {
        font-size: clamp(3rem, 12vw, 12rem) !important;
    }
}

@media (max-width: 480px) {
    /* Make projects page mobile header identical to main page */
    .projects .nav {
        background-color: transparent !important;
        backdrop-filter: none !important;
        border-bottom: none !important;
        position: relative !important;
    }
    
    /* Lower the hero content below the header */
    .projects .hero {
        padding-top: 100px !important;
    }
    
    .projects .hero-title-above {
        top: 20% !important;
    }
    
    .projects .hero-gif {
        top: 30% !important;
        bottom: 25% !important;
    }
    
    .projects .hero-subtitle-below {
        top: 88% !important;
    }
    
    /* Make Our Projects title MASSIVE on smaller mobile */
    .projects .hero-title-final {
        font-size: clamp(3.5rem, 15vw, 15rem) !important;
    }
}
