/* About Hero Section */
.about-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #1A1A3E 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}      

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255,255,255,0.9) 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 1;
}

.gradient-rings {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at center,
        rgba(var(--primary-rgb), 0.1) 0%,
        rgba(var(--primary-rgb), 0.05) 30%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(1px);
}

.floating-dot:nth-child(1) {
    top: 30%;
    right: 40%;
    animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(2) {
    top: 50%;
    right: 30%;
    animation: float 8s ease-in-out infinite -2s;
}

.floating-dot:nth-child(3) {
    top: 70%;
    right: 45%;
    animation: float 7s ease-in-out infinite -4s;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #0F1A3E 100%);
}

/* Floating Background Elements */
.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

#networkCanvas {
    width: 100%;
    height: 100%;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-left {
    position: relative;
}

.section-marker {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(var(--primary-rgb), 0.15);
    display: block;
    line-height: 1;
    margin-bottom: 1rem;
}

.accent-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-top: 2rem;
    margin-left: 4px;
}

.section-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0;
    display: block;
}

.mission-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.mission-statement {
    font-size: 1.125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    color: var(--primary);
}

.feature span {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Generate multiple data points */
@for $i from 1 through 20 {
    .data-point:nth-child(#{$i}) {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--secondary);
        border-radius: 50%;
        transform: rotateY(#{$i * 18}deg) translateZ(100px);
        animation: pulsePoint 2s ease-in-out infinite #{$i * 0.1}s;
    }
}

.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(var(--secondary-rgb), 0.05);
    transform: rotate(45deg);
}

@keyframes rotateSphere {
    from { 
        transform: rotateY(0) rotateX(45deg) rotateZ(0); 
    }
    to { 
        transform: rotateY(360deg) rotateX(45deg) rotateZ(360deg); 
    }
}

@keyframes pulsePoint {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glowPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Interactive Hover States */
.mission-visual:hover .data-sphere {
    animation-duration: 20s;
}

.mission-visual:hover .data-points::after {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0D1A3E 100%);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 3rem;
    background: rgba(10, 10, 30, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-header {
    margin-bottom: 4.5rem;
}

.contact-title {
    font-size: 2.25rem;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255,255,255,0.8) 70%, var(--primary) 100%);
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.contact-title.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    font-size: 2.75rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-button {
    padding-top: 2rem;
    transition: transform 0.3s ease;
}

.contact-button.revealed {
    transform: translateY(0);
}

.contact-button .btn-primary {
    font-size: 1.125rem;
    padding: 1.25rem 4.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-button .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(var(--primary-rgb), 0.5),
        0 0 0 2px rgba(var(--primary-rgb), 0.1);
}

/* Add decorative background elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Card Styles */
.value-card, .award-card {
    padding: 1.5rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--secondary);
}

/* Timeline Adjustments */
.timeline-item {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-content {
        flex-direction: column;
        gap: 2rem;
    }

    .mission-text {
        padding: 1.5rem;
    }

    .mission-visual {
        height: 400px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-left {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .accent-line {
        display: none;
    }

    .mission-title {
        font-size: 1.75rem;
    }

    .mission-statement {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .mission-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mission-visual {
        height: 300px;
    }

    .contact-content {
        padding: 4rem 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        padding: 0;
        line-height: 1.5;
    }
    
    .contact-button .btn-primary {
        padding: 1.125rem 3.5rem;
        font-size: 1rem;
    }

    .about-hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .contact-section {
        min-height: 450px;
        padding: 40px 20px;
    }
} 

/* Add Footer Styles */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #080816 100%);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-mark {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-section ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} 

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    text-decoration: none;
} 