/* About Page CSS */

.about-main-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.image-overlay-badge i {
    font-size: 1.5rem;
}

.feature-card-mission .feature-icon {
    background: var(--gradient-primary);
}

.feature-card-vision .feature-icon {
    background: var(--gradient-secondary);
}

.feature-card-values .feature-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

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

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.125rem;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row;
    padding-left: 3rem;
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: 4rem;
    max-width: calc(50% - 4rem);
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-right: 0;
    margin-left: 4rem;
    max-width: calc(50% - 4rem);
}

.timeline-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
    margin-right: 2rem;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.timeline-card-inner h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.timeline-card-inner p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.timeline-icon-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.timeline-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-card-header {
    position: relative;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
}

.team-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.team-card-body {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.team-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team-stat-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.team-stat-item span {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.skill-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-choose-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.why-choose-item p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.why-choose-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(234, 88, 12, 0.9) 100%);
}

.why-choose-us-section .container {
    position: relative;
    z-index: 2;
}

.why-choose-us-section .section-title h2,
.why-choose-us-section .section-title p {
    color: white;
}

.why-choose-us-section .text-center h5 {
    color: white;
    font-weight: 700;
}

.why-choose-us-section .text-muted {
    color: rgba(255,255,255,0.9) !important;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content {
        flex-direction: column !important;
        padding-left: 4rem;
    }
    
    .timeline-icon-wrapper {
        position: absolute;
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-image {
        order: -1;
    }
    
    .why-choose-us-section {
        background-attachment: scroll;
    }
}

