/* About Page Styles */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.text-primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overview-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.overview-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.overview-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Technologies Detail */
.technologies-detail {
    padding: 80px 0;
    background: #f9fafb;
}

.tech-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.tech-detail-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.tech-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tech-detail-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-detail-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 20px;
}

.tech-list li::before {
    content: '•';
    color: #1e40af;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.team-stat {
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-size: 16px;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #f9fafb;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.client-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-card:hover .client-image img {
    transform: scale(1.05);
}

.client-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.client-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
}

.client-content {
    padding: 24px;
}

.client-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.image-upload-area {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
}

.vision-description {
    font-size: 20px;
    color: #bfdbfe;
    line-height: 1.6;
    margin-bottom: 48px;
}

.vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.vision-value {
    text-align: center;
}

.vision-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.vision-value h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vision-value p {
    color: #bfdbfe;
    font-size: 14px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tech-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-values {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}