/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    background-color: var(--navy);
    color: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title span {
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

.hero-title span:nth-child(2n) {
    color: var(--white);
}

/* Stats Cards */
.stats-container {
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Circuit Animation */
.circuit-paths {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 1;
}

.circuit-line {
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 3s ease-out forwards;
}

.circuit-node {
    fill: var(--gold);
    animation: pulseNode 2s ease-in-out infinite;
}

.circuit-pulse {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    opacity: 0;
    animation: expandPulse 2s ease-out infinite;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseNode {
    50% {
        r: 12;
        opacity: 0.5;
    }
}

@keyframes expandPulse {
    0% {
        r: 8;
        opacity: 1;
    }
    100% {
        r: 40;
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-container {
        margin-top: 2rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .circuit-paths {
        width: 100%;
        height: auto;
    }
}