/* About Page Specific Styles */

/* Header */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
}

/* Profile Image */
.profile-image-container {
    position: relative;
    display: inline-block;
}

.profile-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--bs-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Story Section */
.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Values */
.value-item {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-10px);
}

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

/* Skills Section */
.skills-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    font-weight: 600;
}

.skill-percentage {
    font-weight: 600;
    color: var(--bs-primary);
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 4px;
}

/* Soft Skills */
.soft-skill-item {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
}

.soft-skill-item:hover {
    transform: translateY(-5px);
    background-color: #e9ecef;
}

.soft-skill-icon {
    font-size: 1.8rem;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.soft-skill-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Tools Section */
.tools-section {
    padding-top: 2rem;
}

.tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tool-item {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.8rem;
    color: var(--bs-primary);
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    background-color: var(--bs-primary);
}

.tool-item span {
    font-weight: bold;
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-badge {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    font-size: 1.2rem;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-panel {
    width: calc(50% - 40px);
    float: left;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-panel::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    border-top: 15px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 15px solid transparent;
}

.timeline-item:nth-child(even) .timeline-panel {
    float: right;
}

.timeline-item:nth-child(even) .timeline-panel::after {
    left: -15px;
    border-left: 0;
    border-right: 15px solid #fff;
}

.timeline-heading {
    margin-bottom: 15px;
}

.timeline-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.timeline-list li {
    margin-bottom: 5px;
}

/* Testimonials */
.testimonial-item {
    padding: 2rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--bs-primary);
}

.testimonial-rating {
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-indicators {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 0;
    justify-content: center;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
}

.testimonial-indicators .active {
    background-color: var(--bs-primary);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-badge {
        left: 40px;
    }
    
    .timeline-panel {
        width: calc(100% - 90px);
        float: right;
    }
    
    .timeline-panel::after {
        left: -15px;
        border-left: 0;
        border-right: 15px solid #fff;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .about-header {
        padding: 4rem 0;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .tools-container {
        gap: 0.5rem;
    }
    
    .tool-item {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
/* Accordion Customization */
.accordion-button { 
    background-color: #e9ecef; 
    color: #333; 
    font-weight: 600; 
} 
.accordion-button:not(.collapsed) { 
    background-color: var(--bs-primary); 
    color: #fff; 
}
.accordion-body { 
    background-color: #f8f9fa; 
    color: #555; 

    font-weight: 600;
    line-height: 1.6;
}

/* Timeline Animation */
.timeline-panel {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-badge {
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-badge {
    transform: translateX(-50%) scale(1.2);
}

@media (max-width: 991.98px) {
    .timeline-item:hover .timeline-badge {
        transform: scale(1.2);
    }
}


