/* About Page Styles */

/* Page Banner */
.page-banner {
    background: url('../images/about-banner.jpg') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.signature {
    margin-top: 2rem;
}

.signature img {
    max-width: 200px;
    margin-bottom: 10px;
}

.signature p {
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: #fff;
}

.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-box,
.vision-box,
.values-box {
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-box:hover,
.vision-box:hover,
.values-box:hover {
    transform: translateY(-10px);
}

.mission-box {
    background-color: rgba(180, 30, 18, 0.05);
}

.vision-box {
    background-color: rgba(180, 30, 18, 0.1);
}

.values-box {
    background-color: rgba(180, 30, 18, 0.15);
}

.mission-box .icon,
.vision-box .icon,
.values-box .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.mission-box h3,
.vision-box h3,
.values-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission-box p,
.vision-box p,
.values-box p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

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

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

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

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

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(180, 30, 18, 0.8);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transition: bottom 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-info .position {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info .bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.skills-text {
    flex: 1;
}

.skills-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.skills-bars {
    flex: 1;
}

.skill {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-info span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.skill-bar {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    transition: width 1s ease;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: url('../images/achievements-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    z-index: 1;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 30, 18, 0.85);
    z-index: -1;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement {
    text-align: center;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.achievement-count {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonial-item {
    height: 100%;
}

.testimonial-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.client-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.client-logo {
    text-align: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    height: auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: url('../images/cta-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .mission-vision-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-content {
        flex-direction: column;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .mission-vision-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Dark Mode Styles */
.dark-mode .about-section,
.dark-mode .team-section,
.dark-mode .testimonials-section {
    background-color: var(--dark-bg);
}

.dark-mode .mission-box,
.dark-mode .vision-box,
.dark-mode .values-box,
.dark-mode .team-member,
.dark-mode .testimonial-content,
.dark-mode .clients-section {
    background-color: var(--dark-card-bg);
}

.dark-mode .skill-bar {
    background-color: #2a2a2a;
}

.dark-mode .client-logo {
    filter: brightness(0.8) grayscale(100%);
}

.dark-mode .client-logo:hover {
    filter: brightness(1) grayscale(0%);
}