/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-gray);
    color: var(--light-color);
}

.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--dark-gray);
    color: var(--light-color);
    background-image: url("../img/about-hero.jpg") !important;
    background-size: cover;
    background-position: center;
}

.about-hero-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    text-align: center;
    margin: 0 auto;
    color: #e66a22;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ffffff;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    overflow: hidden;
}

.who-we-are-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.who-we-are-image {
    flex: 1;
    position: relative;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.who-we-are-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.who-we-are-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--light-color);
}

.image-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

.who-we-are-text {
    flex: 1;
}

.who-we-are-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.who-we-are-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.motto-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.motto-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.motto-line:hover {
    transform: translateY(-10px);
}

.motto-line i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.motto-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .motto-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    position: relative;
    color: var(--light-color);
    overflow: hidden;
}

.what-we-do-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
}

.section-header.light h2,
.section-header.light p {
    color: var(--light-color);
}

.section-header.light h2 span {
    color: var(--light-color);
    opacity: 0.9;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--light-color);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.values-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.values-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.2);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -80px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -80px;
}

.timeline-icon i {
    font-size: 24px;
    color: var(--light-color);
}

.timeline-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-content p {
    line-height: 1.7;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    position: relative;
    color: var(--light-color);
    overflow: hidden;
}

.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='40' viewBox='0 0 50 40'%3E%3Cpath d='M0 20h50v20H0V20zM0 0h50v20H0V0z' fill='%230e7490' fill-opacity='0.1'/%3E%3C/svg%3E");
    z-index: -1;
}

.achievements-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.tabs-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.award-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.award-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon i {
    font-size: 24px;
    color: var(--light-color);
}

.award-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.award-details p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-item {
    display: flex;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.project-image {
    flex: 1;
    min-width: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    flex: 2;
    padding: 30px;
}

.project-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.project-info p {
    line-height: 1.7;
    opacity: 0.9;
}

.innovation-showcase {
    display: flex;
    gap: 40px;
    align-items: center;
}

.innovation-text {
    flex: 1;
}

.innovation-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.innovation-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.innovation-list {
    list-style: none;
    margin-bottom: 20px;
}

.innovation-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.innovation-list li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.innovation-image {
    flex: 1;
}

.innovation-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Our Goals Section */
.our-goals {
    padding: 100px 0;
}

.goals-container {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.goals-image {
    flex: 1;
}

.goals-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.goals-content {
    flex: 1;
}

.goal-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(14, 116, 144, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.goal-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.goal-text p {
    line-height: 1.7;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    background-color: rgba(14, 116, 144, 0.8);
    transition: bottom 0.3s ease;
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-role {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.member-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    height: 320px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 20px;
    color: var(--light-color);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Animation Classes */
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-animate="left"] {
    transform: translateX(-50px);
}

[data-animate="right"] {
    transform: translateX(50px);
}

[data-animate="up"] {
    transform: translateY(50px);
}

[data-animate="down"] {
    transform: translateY(-50px);
}

[data-animate="scale"] {
    transform: scale(0.8);
}

[data-animate="fade"] {
    opacity: 0;
}

[data-animate].in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .who-we-are-content,
    .goals-container,
    .innovation-showcase {
        flex-direction: column;
    }
    
    .values-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
    }
    
    .project-item {
        flex-direction: column;
    }
    
    .project-image {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    .who-we-are-content,
    .goals-container {
        gap: 40px;
    }
    
    .testimonial-slider {
        height: 400px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

.client-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.client-icon.male {
    background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
}

.client-icon.female {
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
}