/* About Page Specific Styles */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Company Story */
.company-story {
    background: #0a0a0a;
    padding: 6rem 0;
}

.company-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-story-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.company-story-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.story-visual {
    text-align: center;
}

.story-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.illustration-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.8;
}

.illustration-element:nth-child(1) { top: 20px; left: 50%; transform: translateX(-50%); }
.illustration-element:nth-child(2) { top: 50%; right: 20px; transform: translateY(-50%); }
.illustration-element:nth-child(3) { bottom: 20px; left: 50%; transform: translateX(-50%); }

/* Mission & Values */
.mission-values {
    background: #0a0a0a;
    padding: 6rem 0;
}

.mission-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-values-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #667eea;
}



/* Future Vision */
.future-vision {
    background: #0a0a0a;
    padding: 6rem 0;
}

.future-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.future-vision-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.future-vision-description {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

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

.vision-text h3 {
    margin-bottom: 1.5rem;
    color: #667eea;
}

.vision-list {
    list-style: none;
    margin-bottom: 2rem;
}

.vision-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.vision-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.vision-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.future-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.future-element:nth-child(1) { top: 30px; left: 30px; animation-delay: 0s; }
.future-element:nth-child(2) { top: 50%; right: 30px; transform: translateY(-50%); animation-delay: 1s; }
.future-element:nth-child(3) { bottom: 30px; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About CTA */
.about-cta {
    background: #0a0a0a;
    padding: 6rem 0;
    text-align: center;
}

.about-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-cta-title {
    margin-bottom: 1.5rem;
}

.about-cta-description {
    margin-bottom: 3rem;
    opacity: 0.8;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    

    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 1.5rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}
