.team-experience {
    padding: 0rem 0;
    background: transparent;
    text-align: center;
    overflow: hidden;
    font-family: var(--font-main);
}

.team-experience .container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-exp-header {
    margin-bottom: 50px;
}

.team-exp-header h2 {
    font-size: 3.6rem;
    color: #101828;
    margin-bottom: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.team-exp-header p {
    font-size: 1.6rem;
    color: #475467;
    max-width: 70rem;
    margin: 0 auto;
    line-height: 1.6;
}

.team-exp-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-exp-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-exp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #007bff;
    transition: width 0.4s ease;
}

.team-exp-card:hover::before {
    width: 100%;
}

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

/* Card-specific colors */
.team-exp-card:nth-child(1)::before {
    background: #007bff;
}

.team-exp-card:nth-child(1) .team-exp-icon {
    background: #eef4ff;
    color: #007bff;
}

.team-exp-card:nth-child(1) .team-exp-number {
    color: #007bff;
}

.team-exp-card:nth-child(2)::before {
    background: #6366f1;
}

.team-exp-card:nth-child(2) .team-exp-icon {
    background: #eef2ff;
    color: #6366f1;
}

.team-exp-card:nth-child(2) .team-exp-number {
    color: #6366f1;
}

.team-exp-card:nth-child(3)::before {
    background: #10b981;
}

.team-exp-card:nth-child(3) .team-exp-icon {
    background: #ecfdf5;
    color: #10b981;
}

.team-exp-card:nth-child(3) .team-exp-number {
    color: #10b981;
}

.team-exp-icon {
    width: 8.4rem;
    height: 8.4rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.6rem;
    margin-bottom: 2.4rem;
    transition: transform 0.3s ease;
}

.team-exp-card:hover .team-exp-icon {
    transform: scale(1.1);
}

.team-exp-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.team-exp-title {
    font-size: 2rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.team-exp-desc {
    font-size: 1.5rem;
    color: #475467;
    line-height: 1.6;
    text-wrap: balance;
}

@media (max-width: 768px) {
    .team-experience {
        padding: 6rem 0;
    }

    .team-exp-header h2 {
        font-size: 3.2rem;
    }

    .team-exp-grid {
        gap: 2rem;
    }

    .team-exp-card {
        padding: 4rem 2.4rem;
        max-width: 100%;
    }

    .team-exp-desc {
        font-size: 1.4rem;
    }
}