/* Employees Page Styles */

/* Team Introduction Section */
.team-intro {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.team-intro .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-intro h2 {
    font-size: 36px;
    color: #242424;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #515154;
}

/* Employees Section */
.employees-section {
    padding: 60px 0 80px;
    background-color: #f8f9fa;
}

.employees-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Employees Grid */
.employees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Employee Card */
.employee-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.employee-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Employee Avatar */
.employee-avatar {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.employee-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #0071e3 0%, #00c6fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Employee Info */
.employee-info {
    flex-grow: 1;
    min-width: 0;
}

.employee-name {
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.employee-position {
    font-size: 14px;
    color: #515154;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Arrow */
.card-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0071e3;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Join Our Team Section */
.join-team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1c2834 0%, #2d3e50 100%);
    text-align: center;
    color: #fff;
}

.join-team-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.join-team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 500;
}

.join-team-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e6e9ec;
}

.join-team-section .cta-button {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 14px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.join-team-section .cta-button:hover {
    background: #0077ed;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .employees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .team-intro h2,
    .join-team-section h2 {
        font-size: 28px;
    }

    .team-intro p,
    .join-team-section p {
        font-size: 16px;
    }

    .employee-card {
        padding: 20px;
    }

    .employee-avatar {
        width: 60px;
        height: 60px;
        margin-right: 16px;
    }

    .avatar-placeholder {
        font-size: 18px;
    }

    .employee-name {
        font-size: 16px;
    }

    .employee-position {
        font-size: 13px;
    }
}
