/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), var(--logo2-image);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-content {
    padding: 4rem 5%;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.about-text p {
    margin-bottom: 2rem;
    line-height: var(--line-height-base);
}

.about-text ul {
    list-style: none;
}

.about-text ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-text ul li i {
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
}

/* Tech Showcase Section */
.about-tech-showcase {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-tech-showcase h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
    font-size: 2.5rem;
}

.about-tech-showcase h2 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.tech-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-showcase-grid .tech-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-showcase-grid .tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.tech-showcase-grid .tech-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: #f8f9fa;
    padding: 1rem;
}

.tech-showcase-grid .tech-item h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-showcase-grid .tech-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Company Section */
.about-company {
    padding: 4rem 5%;
    background: white;
}

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

.company-info h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.company-info h2 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.company-info p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.company-image {
    text-align: center;
}

.company-image img {
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
}



/* Responsive styles for About page */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .tech-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .about-tech-showcase h2 {
        font-size: 2rem;
    }

    .company-info h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-content {
        padding: 2rem 5%;
    }

    .tech-showcase-grid .tech-item {
        padding: 1.5rem;
    }

    .tech-showcase-grid .tech-item img {
        width: 100px;
        height: 100px;
    }

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

    .stat-item {
        padding: 1rem;
    }

    .stat-item i {
        font-size: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }

    .about-tech-showcase,
    .about-company {
        padding: 2rem 5%;
    }
}
