/* Hero Section */
.in{
	width: 40px;

}
.about-hero {
    padding: 150px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

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

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.about-hero h1 span {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

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

/* Mission Section */
.mission-section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.5), rgba(30, 58, 95, 0.3));
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-card {
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.mission-card:nth-child(1) { animation-delay: 0.1s; }
.mission-card:nth-child(2) { animation-delay: 0.2s; }
.mission-card:nth-child(3) { animation-delay: 0.3s; }

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

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--accent-cyan);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.mission-card:nth-child(1) .mission-icon { animation-delay: 0s; }
.mission-card:nth-child(2) .mission-icon { animation-delay: 1s; }
.mission-card:nth-child(3) .mission-icon { animation-delay: 2s; }

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.mission-text {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 5%;
    background: rgba(10, 22, 40, 0.6);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.team-member {
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    background: rgba(30, 58, 95, 0.3);
}

.member-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
	text-align: center;
	text-decoration: none;
}
.member-header a{
	text-decoration: none;
}

.member-avatar {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    position: relative;
}

.member-avatar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}
.member-avatar img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
}
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.member-info h3 {
	text-decoration: none;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.member-role {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 5px;
}

.member-equity {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.member-bio {
    text-align: center;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.stat-value {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Journey Timeline Visualization */
.journey-section {
    padding: 100px 5%;
    position: relative;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.3), rgba(10, 22, 40, 0.5));
}

.timeline-container {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 1.1%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-teal));
    transform: translateX(-50%);
}

.timeline-item {
    /* display: flex;
   align-items: center;*/
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInScale 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    margin: 0 40px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: rgba(30, 58, 95, 0.4);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-cyan);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.timeline-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Impact Visualization */
.impact-section {
    padding: 100px 5%;
    background: rgba(10, 22, 40, 0.5);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.impact-card {
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.impact-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Partners Form */
.partners-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
}

.partners-container {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 20px;
}

.partners-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.submit-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

/* Footer */
footer {
    padding: 60px 5% 40px;
    background: rgba(10, 22, 40, 0.9);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-brand h3::before {
    content: '💧';
    margin-right: 10px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 800px) {
    .timeline-line {
        left: 1.5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-line {
        left: 1.6%;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    @media (max-width: 600px) {
        .timeline-line {
            left: 1.9%;
        }
        
        }
      @media (max-width: 400px) {
        .timeline-line {
            left: 3.1%;
        }
        
        }