/* About Page Styles */

/* Mission and Vision Section */
.mission-vision {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.mission-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    margin-bottom: 20px;
}

.mission-icon img {
    width: 60px;
    height: 60px;
}

.mission-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);
}

.mission-content p {
    color: var(--paragraph-color);
    margin-bottom: 0;
    line-height: 1.8;
}

.values-container {
    margin-top: 50px;
}

.values-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--heading-color);
}

.value-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--heading-color);
}

.value-item p {
    color: var(--paragraph-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Company History Section */
.company-history {
    padding: 100px 0;
}

.history-timeline {
    position: relative;
    margin-top: 50px;
}

.timeline-container {
    position: relative;
    padding-left: 50px;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--primary-color);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    z-index: 1;
    font-size: 12px;
}

.timeline-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.timeline-content p {
    color: var(--paragraph-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.testimonials-slider {
    margin-top: 50px;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    margin-right: 5px;
}

.testimonial-content > p {
    color: var(--paragraph-color);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.author-info p {
    color: var(--paragraph-color);
    margin-bottom: 0;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .mission-vision,
    .company-history,
    .testimonials-section {
        padding: 70px 0;
    }
    
    .mission-box,
    .timeline-content,
    .testimonial-content {
        padding: 30px;
    }
    
    .timeline-container {
        padding-left: 40px;
    }
    
    .timeline-year {
        left: -40px;
        width: 35px;
        height: 35px;
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .mission-vision,
    .company-history,
    .testimonials-section {
        padding: 50px 0;
    }
    
    .mission-box,
    .value-item,
    .timeline-content,
    .testimonial-content {
        padding: 25px;
    }
    
    .values-title {
        font-size: 24px;
    }
    
    .timeline-container {
        padding-left: 35px;
    }
    
    .timeline-year {
        left: -35px;
        width: 30px;
        height: 30px;
        font-size: 9px;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
} 