/* --- ABOUT US PAGE STYLES --- */
.hero-content {
    
    margin-top: 5rem;
}
/* --- 3. Numbers Section --- */
.numbers-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 15px;
}
.numbers-section h2 {
    color: var(--white-color);
}
.numbers-section .highlight {
    color: var(--white-color);
    text-decoration: underline;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}
.number-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.number-item h3 {
    font-size: 3rem;
    font-weight: 700;
}
.number-item p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- 4. Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e9e3f5;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: -1;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--white-color);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}
.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.timeline-content {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
    position: relative;
}
.timeline-item:nth-child(odd) {
    padding-left: 0;
    padding-right: 50px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    padding-right: 0;
    padding-left: 50px;
}

/* --- 5. Founders Section --- */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: auto;
}
.founder-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.founder-card:nth-child(even) {
    flex-direction: row-reverse;
}
.founder-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}
.founder-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}
.founder-info span {
    display: block;
    font-weight: 600;
    color: #777;
    margin-bottom: 1rem;
}

/* --- 6. Core Values Section --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}
.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* --- 7. Day in the Life Section --- */
.day-in-life-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.day-in-life-grid div {
    font-size: 1.1rem;
}
.day-in-life-grid i {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* --- 8. Workspace Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* --- 9. Hiring Section --- */
.hiring-section {
    background: var(--light-color);
    text-align: center;
    border-radius: 15px;
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-date {
        text-align: center;
    }
    .timeline-item:nth-child(odd) {
        padding-right: 15px;
        padding-left: 60px;
    }
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
    }
    
    .founder-card,
    .founder-card:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
}