/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.breadcrumbs a {
    color: var(--primary-blue);
    font-weight: 500;
}

/* Who We Are */
.who-we-are-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid var(--secondary-blue);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* Timeline / Our Story */
.timeline-section {
    position: relative;
    padding: 2rem 0;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Vertical line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #cbd5e1;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--primary-blue);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--white);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--white);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--secondary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-blue);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    background-color: #e2e8f0;
    background-size: cover;
    background-position: center;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Process Section */
.process-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.process-step-card {
    text-align: center;
    position: relative;
}

.process-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Clients & Partners */
.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    opacity: 0.7;
}

.client-logo-ph {
    height: 60px;
    background: #f1f5f9;
    border-radius: 4px;
}

/* Culture Teaser */
.culture-teaser-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-list {
    list-style: none;
    margin: 1.5rem 0;
}

.culture-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.culture-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .about-hero-container,
    .who-we-are-container,
    .mission-vision-container,
    .culture-teaser-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-right {
        left: 0;
    }

    .timeline-left::before,
    .timeline-right::before {
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
        left: 60px;
    }

    .values-grid,
    .team-grid,
    .process-steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {

    .values-grid,
    .team-grid,
    .process-steps-container,
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}