/* About Hero Section */
.about-hero-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
    min-height: 100vh;
}

.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

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

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-title .gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    font-size: 2.5rem;
}

.about-hero-subtitle {
    display: block;
    font-size: 2.5rem;
    margin-top: 10px;
}

.about-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ecdc4;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Profile Showcase */
.about-hero-visual {
    position: relative;
    z-index: 2;
}

.profile-showcase {
    text-align: center;
}

.profile-image {
    margin-bottom: 30px;
}

.profile-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid #4ecdc4;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.profile-placeholder i {
    font-size: 4rem;
    color: #4ecdc4;
}

.expertise-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid #4ecdc4;
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ecdc4;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
}

.badge-item i {
    font-size: 1.2rem;
}

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: white;
}

.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4ecdc4, #45b7d1);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #4ecdc4;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #4ecdc4;
}

.timeline-year {
    position: absolute;
    left: -80px;
    top: 0;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Experience Showcase */
.experience-showcase {
    padding: 20px;
}

.experience-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.experience-icon i {
    font-size: 2rem;
    color: white;
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #495057;
    font-size: 1.1rem;
}

.expertise-list i {
    color: #4ecdc4;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Services Overview Section */
.services-overview-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-overview-icon i {
    font-size: 2rem;
    color: white;
}

.service-overview-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-overview-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-overview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    text-align: center;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 2rem;
    }
    
    .about-hero-stats {
        justify-content: center;
    }
    
    .profile-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .profile-placeholder i {
        font-size: 3rem;
    }
    
    .expertise-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        margin-bottom: 10px;
        display: inline-block;
    }
    
    .story-timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .value-card,
    .service-overview-card {
        margin-bottom: 2rem;
    }
} 