/* About Us Page Specific Styles */

/* About Hero Section */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9f5ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero .hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-hero .hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.about-hero .hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: #fff;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: #718096;
    line-height: 1.5;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Story Section */
.story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f9f5ff 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #667eea;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    text-align: center;
    background: #667eea;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -40px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -40px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #fff;
}

.team-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 50px;
}

.founder-image {
    flex: 1;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.founder-bio {
    flex: 1;
}

.founder-bio h3 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.founder-role {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-bio p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5a67d8;
    transform: translateY(-3px);
}

/* Advisors Section */
.advisors {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.advisors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f9f5ff 100%);
    filter: blur(20px);
    opacity: 0.3;
    z-index: 1;
}

.advisors .container {
    position: relative;
    z-index: 2;
}

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

.advisor-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advisor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.advisor-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #667eea;
}

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

.advisor-info h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.advisor-title {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.advisor-bio {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(0px);
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-hero .hero-content {
        max-width: 100%;
    }
    
    .mission-content {
        flex-direction: column;
    }
    
    .team-content {
        flex-direction: column;
    }
    
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .timeline-content::before {
        left: -40px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-year {
        flex: 0 0 80px;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 120px 0 60px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1rem;
    }
    
    .mission, .story, .team, .advisors {
        padding: 60px 0;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .advisor-card {
        padding: 20px;
    }
}