.mwt-prestige-team-sec {
    position: relative;
    width: 100%;
    background: #ffffff;
    background-image: radial-gradient(rgba(11, 49, 103, 0.015) 1px, transparent 0);
    background-size: 24px 24px;
    padding: 20px;
    overflow: hidden;
}

.mwt-team-full-container {
    width: 100%;
    padding: 0 4%;
    margin: 0 auto;
}

.mwt-team-main-head {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px auto;
}

.mwt-team-mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* background: rgba(11, 49, 103, 0.04);
    border: 1px solid rgba(11, 49, 103, 0.08); */
    padding: 8px 18px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.mwt-team-flash-node {
    width: 6px;
    height: 6px;
    background: #ff9f1c;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff9f1c;
    animation: beaconPulse 1.8s infinite;
}

.mwt-team-string {
    font-size: 20px;
    color: #0b3167;
    font-weight: 900;
    letter-spacing: 2px;
}

.mwt-team-sec-title {
    color: #0b3167;
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mwt-orange-neon {
    color: #ff9f1c;
    text-shadow: 0 4px 15px rgba(255, 159, 28, 0.2);
}

.mwt-team-sub-txt {
    color: #475569;
    font-size: clamp(14px, 1.15vw, 16px);
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 1px;
}

/* .mwt-team-bar-deco {
    width: 60px;
    height: 3px;
    background: #ff9f1c;
    margin: 22px auto 0 auto;
    border-radius: 2px;
} */

.mwt-prestige-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    width: 100%;
    /* max-width: 1140px; */
    margin: 0 auto;
}

.mwt-prestige-team-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(11, 49, 103, 0.02);
    border: 1px solid #f1f5f9;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s;
}

.mwt-prestige-card-inner {
    padding: 40px 24px 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
}

.mwt-prestige-laser-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ff9f1c;
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 6;
}

.mwt-prestige-avatar-frame {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 25px;
}

.mwt-prestige-avatar-bg {
    position: absolute;
    inset: 10px;
    background: #0b3167;
    border-radius: 50%;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s;
}

.mwt-prestige-avatar-frame img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(11, 49, 103, 0.05);
    transform: scale(1) translateY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.mwt-prestige-meta {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
}

.mwt-prestige-name {
    color: #0b3167;
    font-size: 17.5px;
    font-weight: 850;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mwt-prestige-role {
    color: #64748b;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 4px;
}

.mwt-prestige-social-dock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
}

.mwt-prestige-social-dock a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mwt-prestige-social-dock a:hover {
    color: #ff9f1c;
    transform: scale(1.2);
}

.mwt-prestige-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 49, 103, 0.06);
    border-color: #e2e8f0;
}

.mwt-prestige-team-card:hover .mwt-prestige-laser-line {
    width: 50px;
}

.mwt-prestige-team-card:hover .mwt-prestige-avatar-bg {
    transform: scale(1.04);
    background: #ff9f1c;
}

.mwt-prestige-team-card:hover .mwt-prestige-avatar-frame img {
    transform: scale(1.08) translateY(-8px);
}

.mwt-prestige-team-card:hover .mwt-prestige-name {
    color: #ff9f1c;
}

.mwt-prestige-team-card:hover .mwt-prestige-social-dock a {
    color: #0b3167;
}

.mwt-prestige-team-card:hover .mwt-prestige-social-dock a:hover {
    color: #ff9f1c;
}

@media (max-width: 1200px) {
    .mwt-prestige-team-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .mwt-prestige-team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 25px;
    }
    .mwt-prestige-team-sec {
        padding: 50px 0;
    }
}

@media (max-width: 580px) {
    .mwt-prestige-team-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 30px;
    }
    .mwt-prestige-team-card {
        border-radius: 16px;
    }
    .mwt-prestige-card-inner {
        padding: 35px 20px 25px 20px;
    }
}


/* ================= ========================================================
   PREMIUM MINIMALIST JOIN US SECTION (CLEAN BLUE & ORANGE THEME)
   ========================================================================== */
.mwt-minimal-join-sec {
    position: relative;
    width: 100%;
    background: #F4F7FF; /* Exact soft light blue backdrop layer matched from the asset image */
    padding: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mwt-minimal-join-container {
    width: 100%;
    padding: 0 4%;
    margin: 0 auto;
}

.mwt-minimal-join-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

/* Upper Orange Title Tag Identity Mapping */
.mwt-minimal-join-tag {
    color: #ff9f1c; /* Premium brand corporate orange accent color */
    font-size: clamp(12px, 1.1vw, 20px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

/* Bold Royal Blue Heading Matrix Setup */
.mwt-minimal-join-title {
    color: #0b3167; /* Corporate navy deep space tone from the asset card branding */
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mwt-brand-blue-txt {
    color: #0b3167;
}

/* Balanced Soft Gray Description Copywriting Layout */
.mwt-minimal-join-description {
    color: #334155;
    font-size: clamp(14px, 1.15vw, 13.5px);
    line-height: 1.75;
    font-weight: 500;
    max-width: 820px;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* --- THE CORPORATE ORANGE CAPSULE ACTION LINK BUTTON --- */
.mwt-minimal-join-action {
    display: block;
    width: 100%;
}

.mwt-minimal-explore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 44px;
    background: linear-gradient(135deg, #ff9f1c 0%, #ffb703 100%);
    color: #0b3167;
    font-size: 14.5px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 30px; /* Perfect fluid circle edge capsule shape mapping */
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.22);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, background 0.3s;
}

.mwt-minimal-explore-btn i {
    font-size: 14px;
    color: #0b3167;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- MICRO-INTERACTION HOVER AND SCALES CONTROL MECHANICS --- */
.mwt-minimal-explore-btn:hover {
    background: #0b3167;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(11, 49, 103, 0.3);
}

.mwt-minimal-explore-btn:hover i {
    color: #ff9f1c;
    transform: scale(1.1) rotate(5deg);
}

/* --- RESPONSIVE BOUNDARIES CASCADE adapters --- */
@media (max-width: 768px) {
    .mwt-minimal-join-sec {
        padding: 50px 0;
    }
    .mwt-minimal-join-container {
        padding: 0 20px;
    }
    .mwt-minimal-join-description {
        margin-bottom: 25px;
        line-height: 1.65;
    }
    .mwt-minimal-explore-btn {
        padding: 13px 32px;
        width: 100%;
        max-width: 300px; /* Ensures unbreakable block view on smartphones arrays */
        font-size: 13.5px;
    }
}