/* About Page Specific Styles */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.about-hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: -30px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.timeline-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-left: 40px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 20px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: rotate(45deg);
    z-index: -1;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: #f9fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 15px;
}

/* Meet the Team Section */
.meet-team {
    padding: 80px 0;
    background-color: white;
}

.team-members {
    max-width: 1000px;
    margin: 40px auto 0;
}

.team-card {
    display: flex;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 40px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.member-image {
    width: 300px;
    position: relative;
    flex-shrink: 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.member-info {
    padding: 40px;
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.member-info .title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.member-info .bio {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--gray-color);
}

.member-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.member-stats .stat {
    text-align: center;
}

.member-stats .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.member-stats .label {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.fun-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f7fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.fun-fact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.team-quote {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.team-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.team-quote blockquote::before,
.team-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(67, 97, 238, 0.2);
    position: absolute;
}

.team-quote blockquote::before {
    left: 0;
    top: -15px;
}

.team-quote blockquote::after {
    right: 0;
    bottom: -40px;
}

.team-quote footer {
    margin-top: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Our Technology Section */
.our-technology {
    padding: 80px 0;
    background-color: #f9fafc;
}

.tech-stack {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.tech-category {
    margin-bottom: 40px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f7fa;
    padding: 10px 20px;
    border-radius: 50px;
}

.tech-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tech-description {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.tech-description p {
    margin-bottom: 20px;
}

/* Join Mission Section */
.join-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a56d4 100%);
    color: white;
}

.join-mission .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.join-mission h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.join-mission p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.mission-actions {
    display: flex;
    gap: 15px;
}

.mission-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .team-card {
        flex-direction: column;
    }
    
    .member-image {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .about-hero .container,
    .join-mission .container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero p,
    .join-mission p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mission-actions {
        justify-content: center;
    }
    
    .mission-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .join-mission h2 {
        font-size: 2.2rem;
    }
    
    .timeline-content {
        margin-left: 30px;
    }
    
    .member-info {
        padding: 25px;
    }
    
    .member-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .about-hero h1,
    .join-mission h2 {
        font-size: 1.8rem;
    }
    
    .about-hero p,
    .join-mission p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mission-actions {
        flex-direction: column;
    }
    
    .team-quote blockquote {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .tech-items {
        justify-content: center;
    }
}