/* About Page Styles */
.about-page {
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.about-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.about-hero .hero-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-hero .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Vision Section */
.mission-vision {
    padding: 4rem 0;
    background-color: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background-color: #f8f9fa;
    border-left: 4px solid #4CAF50;
}

.mv-card.vision {
    background-color: #f0f4f8;
    border-left: 4px solid #2196F3;
}

.mv-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.mv-icon {
    margin-bottom: 1.5rem;
}

.mv-icon svg {
    fill: #4CAF50;
}

.vision .mv-icon svg {
    fill: #2196F3;
}

/* Our Story Section */
.our-story {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #05c9fa;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-top: 0;
    color: #fd134e;
}

/* Founder Section */
.founder {
    padding: 4rem 0;
    background-color: #fff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.founder-title {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.founder-quote {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #fd134e;
    margin: 2rem 0;
    position: relative;
}

.founder-quote svg {
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.1;
    width: 40px;
    height: 40px;
    fill: #09078b;
}

.founder-quote blockquote {
    margin: 0;
    padding-left: 2rem;
    font-style: italic;
    color: #555;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.founder-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f4f8;
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background-color: #fd134e;
}

.founder-social a:hover svg {
    fill: white;
}

.founder-social svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

/* Philosophy Section */
.philosophy {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.philosophy-icon {
    margin-bottom: 1.5rem;
}

.philosophy-icon svg {
    fill: #fd134e;
    width: 48px;
    height: 48px;
}

.philosophy-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Team CTA */
.team-cta {
    padding: 4rem 0;
    background-color: #fd134e;
    color: white;
    text-align: center;
}

.team-cta h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.team-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero .hero-content {
        grid-template-columns: 1fr;
    }
    
    .about-hero .hero-image {
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}