/* ===========================================
   TEAM PAGE
============================================== */
.main-team {
    margin-top: 80px;
}

.main-team .col-lg-3 {
    margin-bottom: 25px;
}

.team-card-social a:first-child {
    display: none !important;
}

.team-card {
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease-in-out;
    /* max-width: 400px; */

    height: 100%;
}

.team-card:hover {
    background: linear-gradient(340.65deg, #0f0f10 -12.99%, #0b0573 91.84%);
}

.team-card-image {
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.team-card:hover .team-card-image {
    background: rgba(255, 255, 255, 0.08);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card-content {
    margin-top: 30px;
    padding: 20px;
}

.team-card-info {
    margin-bottom: 26px;
}

.team-card-name {
    font-family: "Funnel Display", sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: clamp(1.8rem, 4.5vw, 2.4rem);
    color: #ffffff;
    margin: 0 0 10px 0;
}

.team-card-designation {
    font-family: "Funnel Display", sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: clamp(1.2rem, 2.5vw, 1.4rem);
    text-transform: uppercase;
    color: #666666;
    margin: 0;
}

.team-card-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.service-title h2 {
    font-weight: 600;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: clamp(48px, 7vw, 90px);
    text-align: center;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    background: linear-gradient(
        180deg,
        #ffffff 8.33%,
        rgba(15, 15, 16, 0) 105.18%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 15px;
}

.service-title p {
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: clamp(22px, 2vw, 28px);
    text-align: center;
    color: var(--jdg-white);
    opacity: 0.6;
}

.out-line-btn {
    background: transparent;
    border: 1px solid rgba(102, 65, 254, 1);
}

@media (max-width: 576px) {
    .good-hands .cta-btn-wrap {
        margin-top: 60px;
        gap: 16px;
        display: inline-grid;
    }
}