/* About Page Styles */

/* Page Header */
.page-header {
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* About Content */
.about-content {
    margin-bottom: 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: flex-start;
}

.about-text {
    max-width: 600px;
}

.about-intro {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.primary-button, .secondary-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-button {
    background-color: var(--accent-color);
    color: white;
}

.primary-button:hover {
    background-color: rgba(255, 77, 90, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.2);
}

.secondary-button {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.about-image-container {
    position: relative;
    margin-top: 0px;
}

.about-image {
    width: 100%;
    height: 500px;
    background-color: #333;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    z-index: -1;
}

/* Skills Section */
.skills-section {
    margin-bottom: 5rem;
    padding: 4rem 0;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.skills-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.skill-category {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.skill-category h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.skill-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.skill-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Experience Section */
.experience-section {
    margin-bottom: 5rem;
}

.experience-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
}

.timeline-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-company {
    opacity: 0.7;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 5rem;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    font-size: 3rem;
    position: absolute;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content::before {
    content: '"';
    top: -1.5rem;
    left: -1rem;
}

.testimonial-content::after {
    content: '"';
    bottom: -2.5rem;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #444;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    color: var(--accent-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 5rem 0;
    border-radius: 8px;
    margin-bottom: 5rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image-container {
        order: 1;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
}