/* =====================================
   LEADERSHIP TEAM – LARGE STYLE
===================================== */

.team-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-top: 60px;
}

/* ===============================
   TEAM CARD
================================ */

.team-member-large {
    position: relative;
    padding: 44px 34px 38px;
    border-radius: 26px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 250, 252, 0.9)
    );
    border: 1px solid rgba(59, 130, 246, 0.14);
    box-shadow:
        0 25px 50px rgba(15, 23, 42, 0.08);
    text-align: center;
    overflow: hidden;
    transition: all 0.45s ease;
    animation: teamFadeUp 0.8s ease forwards;
    opacity: 0;
}

/* Hover lift */
.team-member-large:hover {
    transform: translateY(-16px);
    box-shadow:
        0 40px 80px rgba(59, 130, 246, 0.22);
}

/* Glow overlay */
.team-member-large::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(59, 130, 246, 0.18),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.team-member-large:hover::before {
    opacity: 1;
}

/* ===============================
   MEMBER IMAGE
================================ */

.member-image-large {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    box-shadow:
        0 15px 30px rgba(59, 130, 246, 0.35);
    transition: transform 0.45s ease;
}

/* Avatar float */
.team-member-large:hover .member-image-large {
    transform: translateY(-6px) scale(1.05);
}

/* ===============================
   NAME & ROLE
================================ */

.team-member-large h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.member-role {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2563eb;
    margin-bottom: 16px;
}

/* ===============================
   BIO
================================ */

.member-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 22px;
}

/* ===============================
   SKILLS
================================ */

.member-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Skill pill */
.skill {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.08);
    color: #1e40af;
    transition: all 0.35s ease;
}

/* Hover interaction */
.team-member-large:hover .skill {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    transform: translateY(-2px);
}

/* ===============================
   ANIMATIONS
================================ */

@keyframes teamFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger entrance */
.team-member-large:nth-child(1) { animation-delay: 0.1s; }
.team-member-large:nth-child(2) { animation-delay: 0.25s; }
.team-member-large:nth-child(3) { animation-delay: 0.4s; }
.team-member-large:nth-child(4) { animation-delay: 0.55s; }

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
    .team-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-large {
        grid-template-columns: 1fr;
    }

    .team-member-large {
        padding: 36px 26px;
    }

    .member-image-large {
        width: 86px;
        height: 86px;
        font-size: 36px;
    }
}
/* =====================================
   OUR CULTURE – ADVANCED DESIGN
===================================== */

.culture-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

/* ===============================
   CULTURE CARD
================================ */

.culture-card {
    position: relative;
    padding: 42px 34px;
    border-radius: 22px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(248, 250, 252, 0.92)
    );
    border: 1px solid rgba(59, 130, 246, 0.14);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.06);
    text-align: left;
    overflow: hidden;
    transition: all 0.45s ease;
    animation: cultureFadeUp 0.8s ease forwards;
    opacity: 0;
}

/* Soft accent bar */
.culture-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

/* Hover effect */
.culture-card:hover {
    transform: translateY(-14px);
    box-shadow:
        0 35px 70px rgba(59, 130, 246, 0.18);
}

.culture-card:hover::before {
    transform: scaleX(1);
}

/* ===============================
   TITLES
================================ */

.culture-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    transition: color 0.35s ease;
}

.culture-card:hover h4 {
    color: #2563eb;
}

/* ===============================
   DESCRIPTION
================================ */

.culture-card p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #475569;
}

/* ===============================
   ANIMATIONS
================================ */

@keyframes cultureFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger entrance */
.culture-card:nth-child(1) { animation-delay: 0.1s; }
.culture-card:nth-child(2) { animation-delay: 0.25s; }
.culture-card:nth-child(3) { animation-delay: 0.4s; }
.culture-card:nth-child(4) { animation-delay: 0.55s; }

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .culture-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .culture-cards {
        grid-template-columns: 1fr;
    }

    .culture-card {
        padding: 34px 26px;
    }
}
