/* Additional styles for the About page */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.about-banner {
    color: #ffffff !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1577495508048-b635879837f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.page-banner h2 {
    font-size: 42px;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.page-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company History */
.company-history {
    background-color: #ffffff;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.history-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.history-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid #1a73e8;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.history-image:hover::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 1;
}

.history-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.history-text {
    flex: 1;
}

.history-text p {
    margin-bottom: 20px;
}

/* Mission and Vision */
.mission-vision {
    background-color: #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-box, .vision-box, .values-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-box {
    border-top: 4px solid #1a73e8;
}

.vision-box {
    border-top: 4px solid #d4a76a;
}

.values-box {
    border-top: 4px solid #ff6b6b;
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
    width: 70px;
    height: 70px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-box .icon {
    background-color: #f5e9dc;
}

.values-box .icon {
    background-color: #ffe5e5;
}

.mission-box .icon i {
    font-size: 30px;
    color: #1a73e8;
}

.vision-box .icon i {
    color: #d4a76a;
}

.values-box .icon i {
    color: #ff6b6b;
}

.values-box ul {
    text-align: left;
    padding-left: 20px;
}

.values-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.values-box ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff6b6b;
}

/* Our Team */
.our-team {
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;0,0,0.1);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3, .team-member p {
    padding: 0 20px;
}

.team-member h3 {
    margin-top: 20px;
    color: #1a73e8;
}

.team-member p {
    margin-bottom: 20px;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.testimonial-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: #1a73e8;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-large blockquote {
    font-size: 24px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #1a73e8;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #1a73e8;
}

.author-info p {
    margin: 0;
    color: #777;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .history-content {
        flex-direction: column;
    }
    
    .history-image {
        margin-bottom: 30px;
    }
    
    .testimonial-large blockquote {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0;
    }
    
    .page-banner h2 {
        font-size: 36px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    .testimonial-large blockquote {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h2 {
        font-size: 30px;
    }
    
    .testimonial-large blockquote {
        font-size: 16px;
    }
} 