/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 2rem;
}

.about-hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff, #f093fb, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 1s ease-out;
}

.about-hero-content p {
    font-size: 1.4rem;
    color: #ddd;
    animation: fadeInUp 1s ease-out 0.3s both;
}

#about-canvas {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    opacity: 0.6;
}

/* Story Section */
.story-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.3);
    border-color: rgba(102,126,234,0.5);
}

.stat-card h3 {
    font-size: 3rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: #bbb;
    font-size: 1rem;
}

/* Mission Section */
.mission-section {
    padding: 6rem 5%;
    background: rgba(0,0,0,0.15);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.mission-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102,126,234,0.3);
    border-color: rgba(102,126,234,0.5);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mission-card p {
    color: #ddd;
    line-height: 1.7;
    font-size: 1rem;
}

/* Offerings Section */
.offerings-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
}

.offerings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.offering-category {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.offering-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102,126,234,0.2);
    border-color: rgba(102,126,234,0.4);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.category-icon {
    font-size: 2.5rem;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #fff;
}

.offering-list {
    list-style: none;
    padding: 0;
}

.offering-list li {
    color: #ddd;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.offering-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.offering-list li:hover {
    padding-left: 2rem;
    color: #fff;
}

/* Technology Section */
.technology-section {
    padding: 6rem 5%;
    background: rgba(0,0,0,0.15);
}

.tech-content {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.tech-description {
    margin-bottom: 3rem;
}

.tech-description p {
    color: #ddd;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.tech-badge {
    background: linear-gradient(45deg, rgba(102,126,234,0.3), rgba(118,75,162,0.3));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102,126,234,0.5);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
    background: linear-gradient(45deg, rgba(102,126,234,0.5), rgba(118,75,162,0.5));
}

/* Team Section */
.team-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
}

.team-content {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-intro {
    color: #ddd;
    line-height: 1.8;
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 3rem;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
    border-color: rgba(102,126,234,0.4);
}

.value-item h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: #ddd;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(102,126,234,0.2) 0%, rgba(118,75,162,0.2) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2.5rem;
}

.active {
    color: #667eea !important;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .offerings-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-content h2 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-visual {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .tech-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}
