/* Company History Section */
.company-history {
    padding: 8rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.company-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/1400x800');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-header span {
    display: inline-block;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.history-text {
    color: var(--gray);
    padding-right: 2rem;
}

.history-text h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.history-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-cyan);
    border-radius: var(--border-radius-full);
}

.history-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-light);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .history-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .history-stats {
        grid-template-columns: 1fr;
    }
} 