/* about-us.css */

/* 1. Hero Section */
.about-hero {
    position: relative;
    background-color: #0b2053; /* Dark blue background */
    padding: 6rem 0;
    color: white;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../../images/hero-bg.png') no-repeat right center;
    background-size: cover;
    z-index: 1;
}

.about-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0b2053 0%, rgba(11, 32, 83, 0.7) 30%, rgba(11, 32, 83, 0) 100%);
}

.about-hero .onepro-container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 650px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-hero-actions {
    display: flex;
    gap: 1rem;
}

/* 2. Features Section */
.about-features {
    padding: 6rem 0;
    background-color: #F8FAFC;
    text-align: center;
}

.about-section-header {
    margin-bottom: 4rem;
}

.about-section-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-feature-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.about-feature-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.about-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 3. Process / Timeline Section */
.about-process {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.about-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    display: flex;
    justify-content: space-between;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.about-timeline-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: left;
    padding: 0 1rem;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px white;
    font-weight: bold;
}

.timeline-content h4 {
    color: #2563eb;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 4. Statistics Section */
.about-stats {
    padding: 6rem 0;
    background-color: #F8FAFC;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-left h2 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.stats-left .big-number {
    font-size: 4rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stats-left p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.stats-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.stats-logos img {
    height: 30px;
    transition: transform 0.3s;
}

.stats-logos img:hover {
    transform: scale(1.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    border-left: 2px solid #bfdbfe;
    padding-left: 1.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-bg {
        width: 100%;
    }
    
    .about-hero-bg::before {
        background: linear-gradient(90deg, #0b2053 0%, rgba(11, 32, 83, 0.8) 50%, rgba(11, 32, 83, 0.4) 100%);
    }
    
    .about-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-timeline::before {
        left: 24px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }
    
    .about-timeline-step {
        display: flex;
        gap: 1.5rem;
        padding: 0;
    }
    
    .timeline-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        box-shadow: 0 0 0 4px white; /* Smaller shadow on mobile */
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stats-left {
        text-align: center;
    }
    
    .stats-logos {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
}
