* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0066cc;
    --accent-color: #ff6b35;
    --success-color: #00ff88;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #00d4ff, #0066cc);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    --gradient-info: linear-gradient(135deg, #00d4ff, #00ff88);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - same as network site */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-info);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Info Animation */
.info-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--success-color);
    border-radius: 50%;
    animation: dataPulse 3s infinite;
}

.data-node:nth-child(1) { top: 25%; left: 15%; animation-delay: 0s; }
.data-node:nth-child(2) { top: 60%; right: 20%; animation-delay: 1s; }
.data-node:nth-child(3) { bottom: 25%; left: 25%; animation-delay: 2s; }

.data-flow {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--success-color), transparent);
    animation: dataFlow 4s infinite;
}

.data-flow:nth-child(4) {
    top: 30%;
    left: 15%;
    width: 250px;
    transform: rotate(35deg);
}

.data-flow:nth-child(5) {
    bottom: 30%;
    right: 25%;
    width: 200px;
    transform: rotate(-45deg);
}

@keyframes dataPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes dataFlow {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--card-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--gradient-dark);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-statement {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--success-color);
    margin-bottom: 3rem;
}

.mission-statement h3 {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-statement p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.values h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--success-color);
    margin-top: 0.2rem;
}

.value-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-gray);
    margin: 0;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-circle {
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--card-bg);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.service-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.service-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: var(--gradient-dark);
    padding: 2rem;
    border-radius: 15px;
    width: calc(50% - 40px);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.timeline-content li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--primary-color);
    color: white;
}

.timeline-item.future .timeline-content {
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.development-tag {
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--accent-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    font-weight: bold;
}

.timeline-item.future .timeline-icon {
    background: linear-gradient(135deg, var(--accent-color), #ff8c35);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.approach-card {
    background: var(--gradient-dark);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.approach-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.approach-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.community-impact {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.community-impact h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.community-impact p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.impact-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight i {
    font-size: 2rem;
    opacity: 0.9;
}

.highlight span {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--card-bg);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    background: var(--gradient-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-link:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-link i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.contact-link strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.2rem;
}

.contact-link span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.connection-diagram {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.main-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 2;
}

.connection-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.conn-node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--success-color);
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

.conn-node:nth-child(1) { top: 20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.conn-node:nth-child(2) { right: 20px; top: 50%; transform: translateY(-50%); animation-delay: 2.7s; }
.conn-node:nth-child(3) { left: 20px; top: 50%; transform: translateY(-50%); animation-delay: 5.3s; }

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.conn-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 1px;
    animation: connectionPulse 3s infinite;
}

.conn-line:nth-child(1) {
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%) rotate(-90deg);
    animation-delay: 0s;
}

.conn-line:nth-child(2) {
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%) rotate(30deg);
    animation-delay: 1s;
}

.conn-line:nth-child(3) {
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%) rotate(150deg);
    animation-delay: 2s;
}

@keyframes orbit {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Footer - same as network site */
.footer {
    background: var(--dark-bg);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-content {
        width: 100%;
        margin: 2rem 0 0 0 !important;
    }

    .service-timeline::before {
        left: 30px;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .impact-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .services-overview h2,
    .team-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}
