/* Page Header - Now handled by common.css */

/* Companie Page Header - Now uses common yellow background */

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-top: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    display: grid;
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-text);
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: white;
}

.history-header {
    text-align: center;
    margin-bottom: 4rem;
}

.history-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-top: 1rem;
}

.timeline-modern {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Timeline Animation Styles - Removed */

.timeline-content {
    /* Animation styles removed */
}

.timeline-marker {
    /* Animation styles removed */
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 45px;
    height: 45px;
}

.timeline-year {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 40%;
    position: relative;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 4rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    margin-left: 4rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -24px;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -24px;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-text);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-color);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.year {
    width: 120px;
    text-align: center;
    padding: 10px;
    background-color: var(--accent-color);
    color: #333;
    font-weight: bold;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.content {
    width: calc(50% - 80px);
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content h3 {
    margin-bottom: 10px;
    color: #333;
}

.content p {
    color: #666;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.certification-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.certification-card:hover {
    transform: translateY(-5px);
}

.certification-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.certification-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.certification-card p {
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center bottom;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        margin-left: 60px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .year {
        width: auto;
        margin-bottom: 10px;
    }

    .content {
        width: 100%;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* New responsive styles for modern design */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-modern::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 6rem;
        margin-bottom: 3rem;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
        z-index: 2;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
        flex-shrink: 0;
        flex-direction: row;
        gap: 0;
    }
    
    .timeline-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem;
        border-radius: 50% !important;
        border: 3px solid var(--accent-color);
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        aspect-ratio: 1 !important;
        flex-shrink: 0;
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-section,
    .history-section {
        padding: 60px 0;
    }
    
    .about-header,
    .history-header {
        margin-bottom: 2rem;
    }
    
    .about-card,
    .timeline-content {
        padding: 1rem;
    }
    
    .timeline-item {
        padding-left: 5rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-marker {
        left: 25px;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
        flex-shrink: 0;
        flex-direction: row;
        gap: 0;
    }
    
    .timeline-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.9rem;
        border-radius: 50% !important;
        border: 3px solid var(--accent-color);
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        aspect-ratio: 1 !important;
        flex-shrink: 0;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
    
    .timeline-modern::before {
        left: 25px;
    }
} 
} 