.team-section {
    padding-top: 200px;
}

.team-heading {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 100px;
}

.founders-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 120px;
    flex-wrap: wrap;
}

.founder {
    text-align: center;
}

.founder-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 6px solid rgba(0,0,0,0.05);
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder h2 {
    margin-top: 25px;
    font-size: 1.4rem;
}

.role {
    color: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-category {
    margin-bottom: 80px;
}

.team-category h3 {
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    opacity: 0.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 25px;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.team-card h4 {
    margin: 0;
    font-weight: 600;
}

.team-card p {
    font-size: 13px;
    color: var(--orange);
}

/* Responsive */
@media (max-width: 900px) {

    .team-heading {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .founder-img {
        width: 200px;
        height: 200px;
    }
}