/* About Us Page Specific Styles */

/* Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero .orange-blob {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 25, 0.15) 0%, rgba(255, 107, 25, 0.05) 60%, rgba(255, 107, 25, 0) 100%);
    border-radius: 50%;
    z-index: -1;
}

/* Three.js Animation Container */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-hero-text {
    flex: 1;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about-hero-image {
    flex: 1;
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #FF6B19;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 25, 0.3);
}

.exp-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(255, 107, 25, 0.3);
    transform: translateX(-50%);
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #FF6B19;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.timeline-content.left {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content.right {
    margin-left: 0;
    margin-right: auto;
}

.timeline-year {
    display: inline-block;
    background-color: rgba(255, 107, 25, 0.1);
    color: #FF6B19;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    position: relative;
    padding: 100px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.philosophy-blob {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 25, 0.15) 0%, rgba(255, 107, 25, 0.05) 60%, rgba(255, 107, 25, 0) 100%);
    border-radius: 50%;
}

.philosophy-enso {
    position: absolute;
    top: 50px;
    right: -150px;
    opacity: 0.05;
}

.philosophy-enso img {
    width: 400px;
    height: 400px;
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.philosophy-text {
    flex: 1.2;
}

.philosophy-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 25, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principle-icon img {
    width: 24px;
    height: 24px;
}

.principle-text h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.principle-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.philosophy-image {
    flex: 0.8;
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.philosophy-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 107, 25, 0.1);
    border-radius: 20px;
    z-index: 0;
}

/* Team Section */
.team {
    padding: 100px 0;
}

.leadership-team {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.team-member-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.team-member-info {
    padding: 25px;
}

.team-member-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.team-member-position {
    color: #FF6B19;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-member-social {
    display: flex;
    gap: 10px;
}

.team-member-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 107, 25, 0.1);
    transition: background-color 0.3s ease;
}

.team-member-social .social-link:hover {
    background-color: rgba(255, 107, 25, 0.2);
}

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

.department-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.department-card:hover {
    transform: translateY(-10px);
}

.department-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 25, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.department-icon img {
    width: 35px;
    height: 35px;
}

.department-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.department-count {
    color: #FF6B19;
    font-weight: 600;
    margin-bottom: 15px;
}

.department-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Workspace Section */
.workspace {
    position: relative;
    padding: 100px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.workspace-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.workspace-blob {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 25, 0.15) 0%, rgba(255, 107, 25, 0.05) 60%, rgba(255, 107, 25, 0) 100%);
    border-radius: 50%;
}

.workspace-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin: 0;
}

/* Achievements Section */
.achievements {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.achievements-enso {
    position: absolute;
    bottom: -200px;
    left: -100px;
    opacity: 0.05;
    z-index: -1;
}

.achievements-enso img {
    width: 500px;
    height: 500px;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.stat-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 25, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon img {
    width: 30px;
    height: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B19;
    margin-bottom: 10px;
}

.stat-title {
    color: #333;
    font-weight: 600;
}

.awards-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    width: calc(50% - 15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-logo {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 107, 25, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-logo img {
    width: 60px;
    height: 60px;
}

.award-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.award-year {
    color: #FF6B19;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-hero-content {
        flex-direction: column;
    }

    .about-hero-text,
    .about-hero-image {
        width: 100%;
    }

    .philosophy-content {
        flex-direction: column;
    }

    .philosophy-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .award-item {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .leadership-team {
        flex-direction: column;
    }

    .workspace-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .philosophy-principles {
        grid-template-columns: 1fr;
    }

    .workspace-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .awards-gallery {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
    }

    .achievements-stats {
        grid-template-columns: 1fr;
    }
}

.team-animation {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.team-animation canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}