/* About Us Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: white;
}

.about-hero h1 span {
    color: #ffd700;
    position: relative;
}

.about-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.mission-content h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--gray-color);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-item p {
    color: var(--gray-color);
    margin: 0;
}

/* Organizational Chart Section */
.org-chart-section {
    padding: 100px 0;
    background: white;
}

.org-chart {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.org-member {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.org-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.2);
}

.org-member::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background-color: var(--primary-color);
}

.org-level:last-child .org-member::before {
    display: none;
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.member-avatar i {
    font-size: 1.5rem;
    color: white;
}

.member-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-info p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.member-info .credentials {
    font-size: 0.75rem;
    color: var(--gray-color);
    display: block;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    background: rgba(67, 97, 238, 0.1);
    transition: var(--transition);
}

.linkedin-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.linkedin-link i {
    font-size: 0.8rem;
}

/* CEO Level */
.ceo-level .org-member {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6, #fff);
}

.ceo-level .member-avatar {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

/* Executive Level */
.executive-level .org-member {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f4ff, #fff);
}

/* Senior Level */
.senior-level .org-member {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #f0f8ff, #fff);
}

.senior-level .member-avatar {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Specialist Level */
.specialist-level .org-member {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f8f0ff, #fff);
}

.specialist-level .member-avatar {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

/* Team Details Section */
.team-details-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.team-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    text-align: center;
}

.member-photo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-photo i {
    font-size: 2rem;
    color: white;
}

.member-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: white;
}

.member-title .position {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.card-body {
    padding: 30px;
}

.card-body .bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.credential {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

.expertise h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.expertise ul {
    list-style: none;
    padding: 0;
}

.expertise li {
    padding: 5px 0;
    color: var(--gray-color);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.expertise li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.social-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.linkedin-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.linkedin-profile:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.linkedin-profile i {
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .org-level {
        gap: 20px;
    }
    
    .org-member {
        min-width: 150px;
        padding: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .org-member {
        width: 100%;
        max-width: 250px;
    }
    
    .mission-values {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 20px;
    }
}

/* Animation for org chart connections */
.org-level {
    position: relative;
}

.org-level::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

.org-level:last-child::after {
    display: none;
}

/* Hover effects for org members */
.org-member:hover .member-avatar {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.org-member:hover .member-info h4 {
    color: var(--primary-color);
}

/* Loading animation for team cards */
.team-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Staggered animation for team cards */
.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }
.team-card:nth-child(7) { animation-delay: 0.7s; }
.team-card:nth-child(8) { animation-delay: 0.8s; }
.team-card:nth-child(9) { animation-delay: 0.9s; }
.team-card:nth-child(10) { animation-delay: 1.0s; }
.team-card:nth-child(11) { animation-delay: 1.1s; }
.team-card:nth-child(12) { animation-delay: 1.2s; }
.team-card:nth-child(13) { animation-delay: 1.3s; }
.team-card:nth-child(14) { animation-delay: 1.4s; }
.team-card:nth-child(15) { animation-delay: 1.5s; } 