/**
 * ForexChange - Team Page Styles
 * Redesigned with 3-color palette: #FF6B35 (Primary), #1A1A2E (Dark), #FFFFFF (Light)
 */

/* ===== TEAM HERO SECTION ===== */
.team-hero {
    position: relative;
    padding: var(--space-12) 0 var(--space-10);
    background: linear-gradient(135deg, #FFFFFF 0%, #f8f8fa 100%);
    overflow: hidden;
    text-align: center;
}

.team-hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.team-hero-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.team-hero-blobs .blob-1 {
    top: -20%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(255, 107, 53, 0.2) 100%);
    animation: blobFloat 20s ease-in-out infinite;
}

.team-hero-blobs .blob-2 {
    bottom: -30%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.15) 0%, rgba(26, 26, 46, 0.05) 100%);
    animation: blobFloat 25s ease-in-out infinite reverse;
}

.team-hero-blobs .blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    animation: blobFloat 15s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.05);
    }
    50% {
        transform: translate(-10px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-20px, -10px) scale(1.02);
    }
}

.team-hero-content {
    position: relative;
    z-index: 1;
}

.team-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: #1A1A2E;
    margin-bottom: var(--space-3);
    line-height: var(--leading-tight);
}

.team-hero-subtitle {
    font-size: var(--text-lg);
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: #888;
    margin-bottom: var(--space-4);
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: #FF6B35;
}

.breadcrumbs .separator {
    color: #ccc;
    font-size: var(--text-xs);
}

.breadcrumbs .current {
    color: #FF6B35;
    font-weight: var(--font-medium);
}

/* ===== TEAM INTRO SECTION ===== */
.team-intro {
    padding: var(--space-16) 0;
    background: #FFFFFF;
}

.team-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .team-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.team-intro-content {
    order: 2;
}

@media (min-width: 1024px) {
    .team-intro-content {
        order: 1;
    }
}

.team-intro-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: #1A1A2E;
    margin-bottom: var(--space-6);
}

.team-intro-text {
    font-size: var(--text-base);
    color: #666;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.team-intro-text:last-of-type {
    margin-bottom: var(--space-8);
}

.team-intro-visual {
    order: 1;
}

@media (min-width: 1024px) {
    .team-intro-visual {
        order: 2;
    }
}

/* Team Stats Grid */
.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .team-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.team-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-3);
    color: #FFFFFF;
    font-size: var(--text-xl);
}

.team-stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: #1A1A2E;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.team-stat-label {
    font-size: var(--text-xs);
    color: #666;
}

/* ===== TEAM GLOBE ANIMATION ===== */
.team-globe-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-globe-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

@media (min-width: 768px) {
    .team-globe-wrapper {
        width: 320px;
        height: 320px;
    }
}

/* Globe Core */
.team-globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.4),
        inset 0 -8px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.team-globe-core i {
    font-size: 2.5rem;
    color: #FFFFFF;
}

/* Orbiting Rings */
.team-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(255, 107, 53, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.team-orbit-ring-1 {
    width: 160px;
    height: 160px;
    animation: teamRotateRing 18s linear infinite;
}

.team-orbit-ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(26, 26, 46, 0.15);
    animation: teamRotateRing 28s linear infinite reverse;
}

.team-orbit-ring-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(255, 107, 53, 0.12);
    animation: teamRotateRing 22s linear infinite;
}

@keyframes teamRotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Orbiting Icons */
.team-orbit-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.team-orbit-icon i {
    font-size: 1.1rem;
    color: #FF6B35;
}

.team-orbit-icon-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: teamFloatIcon 3s ease-in-out infinite;
}

.team-orbit-icon-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: teamFloatIconY 3s ease-in-out infinite 0.5s;
}

.team-orbit-icon-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: teamFloatIcon 3s ease-in-out infinite 1s;
}

.team-orbit-icon-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: teamFloatIconY 3s ease-in-out infinite 1.5s;
}

@keyframes teamFloatIcon {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.15);
    }
}

@keyframes teamFloatIconY {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.15);
    }
}

/* Connection Dots */
.team-connection-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.team-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FF6B35;
    border-radius: 50%;
    animation: teamPulseDot 2s ease-in-out infinite;
}

.team-dot:nth-child(1) { top: 25%; left: 28%; animation-delay: 0s; }
.team-dot:nth-child(2) { top: 38%; right: 22%; animation-delay: 0.3s; }
.team-dot:nth-child(3) { bottom: 32%; left: 18%; animation-delay: 0.6s; }
.team-dot:nth-child(4) { bottom: 22%; right: 28%; animation-delay: 0.9s; }
.team-dot:nth-child(5) { top: 52%; left: 12%; animation-delay: 1.2s; }
.team-dot:nth-child(6) { top: 18%; right: 32%; animation-delay: 1.5s; }

@keyframes teamPulseDot {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.6);
    }
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: var(--space-16) 0;
    background: #f8f8fa;
}

.leadership-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.leadership-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: #1A1A2E;
    margin-bottom: var(--space-3);
}

.leadership-subtitle {
    font-size: var(--text-lg);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Leader Card - Glassmorphism Style */
.leader-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.15);
}

.leader-card-inner {
    padding: var(--space-6);
    text-align: center;
}

.leader-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-4);
}

.leader-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.leader-photo-placeholder i {
    font-size: 3rem;
    color: #FFFFFF;
}

.leader-photo-ring {
    position: absolute;
    inset: -4px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    animation: leaderRingPulse 2s ease-in-out infinite;
}

@keyframes leaderRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

.leader-card:hover .leader-photo-ring {
    border-color: #FF6B35;
}

.leader-info {
    padding: 0;
}

.leader-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: #1A1A2E;
    margin-bottom: var(--space-1);
}

.leader-role {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: #FF6B35;
    margin-bottom: var(--space-3);
}

.leader-bio {
    font-size: var(--text-sm);
    color: #666;
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.leader-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8fa;
    border-radius: 50%;
    color: #1A1A2E;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.leader-social-link:hover {
    background: #FF6B35;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
    padding: var(--space-16) 0;
    background: #1A1A2E;
}

.expertise-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.expertise-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-3);
}

.expertise-section-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.expertise-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@media (min-width: 640px) {
    .expertise-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expertise-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Expertise Card - Dark Theme */
.expertise-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal);
}

.expertise-card-new:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.expertise-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B35 0%, #ff8c5a 100%);
    border-radius: var(--radius-xl);
    margin: 0 auto var(--space-4);
    color: #FFFFFF;
    font-size: var(--text-2xl);
    transition: transform var(--transition-normal);
}

.expertise-card-new:hover .expertise-card-icon {
    transform: scale(1.1);
}

.expertise-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: #FFFFFF;
    margin-bottom: var(--space-2);
}

.expertise-card-text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--leading-relaxed);
}

/* ===== JOIN CTA SECTION ===== */
.join-cta-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%);
    position: relative;
    overflow: hidden;
}

.join-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.join-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.join-cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .join-cta-wrapper {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
}

.join-cta-content {
    flex: 1;
}

.join-cta-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: #FFFFFF;
    margin-bottom: var(--space-4);
}

.join-cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    max-width: 500px;
}

.join-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .join-cta-buttons {
        flex-direction: row;
    }
}

.btn-white {
    background: #FFFFFF;
    color: #FF6B35;
    border: 2px solid #FFFFFF;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
}

.btn-white:hover {
    background: transparent;
    color: #FFFFFF;
}

.btn-outline-white {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
}

.btn-outline-white:hover {
    background: #FFFFFF;
    color: #FF6B35;
}

.join-cta-decoration {
    display: none;
}

@media (min-width: 768px) {
    .join-cta-decoration {
        display: block;
    }
}

.join-cta-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 3rem;
    animation: joinIconFloat 3s ease-in-out infinite;
}

@keyframes joinIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Extra small devices (320px - 480px) */
@media (max-width: 480px) {
    .team-hero {
        padding: var(--space-8) 0 var(--space-6);
    }
    
    .team-hero-title {
        font-size: var(--text-2xl);
    }
    
    .team-hero-subtitle {
        font-size: var(--text-base);
    }
    
    .breadcrumbs {
        font-size: var(--text-xs);
    }
    
    /* Team Intro */
    .team-intro {
        padding: var(--space-10) 0;
    }
    
    .team-intro-title {
        font-size: var(--text-2xl);
    }
    
    .team-intro-text {
        font-size: var(--text-sm);
    }
    
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    .team-stat-card {
        padding: var(--space-3);
    }
    
    .team-stat-icon {
        width: 36px;
        height: 36px;
        font-size: var(--text-base);
    }
    
    .team-stat-value {
        font-size: var(--text-lg);
    }
    
    .team-stat-label {
        font-size: 0.625rem;
    }
    
    /* Globe */
    .team-globe-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .team-globe-core {
        width: 80px;
        height: 80px;
    }
    
    .team-globe-core i {
        font-size: 2rem;
    }
    
    .team-orbit-ring-1 { width: 130px; height: 130px; }
    .team-orbit-ring-2 { width: 175px; height: 175px; }
    .team-orbit-ring-3 { width: 220px; height: 220px; }
    
    .team-orbit-icon {
        width: 36px;
        height: 36px;
    }
    
    .team-orbit-icon i {
        font-size: 0.9rem;
    }
    
    /* Leadership */
    .leadership-section {
        padding: var(--space-10) 0;
    }
    
    .leadership-title {
        font-size: var(--text-2xl);
    }
    
    .leadership-subtitle {
        font-size: var(--text-sm);
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .leader-card-inner {
        padding: var(--space-5);
    }
    
    .leader-photo {
        width: 100px;
        height: 100px;
    }
    
    .leader-photo-placeholder i {
        font-size: 2.5rem;
    }
    
    .leader-name {
        font-size: var(--text-lg);
    }
    
    .leader-role {
        font-size: var(--text-xs);
    }
    
    .leader-bio {
        font-size: var(--text-xs);
    }
    
    .leader-social-link {
        width: 36px;
        height: 36px;
    }
    
    /* Expertise */
    .expertise-section {
        padding: var(--space-10) 0;
    }
    
    .expertise-section-title {
        font-size: var(--text-2xl);
    }
    
    .expertise-section-subtitle {
        font-size: var(--text-sm);
    }
    
    .expertise-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .expertise-card-new {
        padding: var(--space-5);
    }
    
    .expertise-card-icon {
        width: 48px;
        height: 48px;
        font-size: var(--text-xl);
    }
    
    .expertise-card-title {
        font-size: var(--text-lg);
    }
    
    .expertise-card-text {
        font-size: var(--text-xs);
    }
    
    /* Join CTA */
    .join-cta-section {
        padding: var(--space-10) 0;
    }
    
    .join-cta-title {
        font-size: var(--text-xl);
    }
    
    .join-cta-text {
        font-size: var(--text-sm);
    }
    
    .join-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-white,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* Small devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .team-hero-title {
        font-size: var(--text-3xl);
    }
    
    .team-intro-title,
    .leadership-title,
    .expertise-section-title {
        font-size: var(--text-2xl);
    }
    
    .join-cta-title {
        font-size: var(--text-2xl);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .team-intro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-intro-content {
        order: 1;
    }
    
    .team-intro-visual {
        order: 2;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation delays for staggered effect */
.leader-card:nth-child(1) { animation-delay: 0ms; }
.leader-card:nth-child(2) { animation-delay: 100ms; }
.leader-card:nth-child(3) { animation-delay: 200ms; }
.leader-card:nth-child(4) { animation-delay: 300ms; }
.leader-card:nth-child(5) { animation-delay: 400ms; }
.leader-card:nth-child(6) { animation-delay: 500ms; }

.expertise-card-new:nth-child(1) { animation-delay: 0ms; }
.expertise-card-new:nth-child(2) { animation-delay: 100ms; }
.expertise-card-new:nth-child(3) { animation-delay: 200ms; }
.expertise-card-new:nth-child(4) { animation-delay: 300ms; }
.expertise-card-new:nth-child(5) { animation-delay: 400ms; }
.expertise-card-new:nth-child(6) { animation-delay: 500ms; }

/* Animation on scroll visibility - DISABLED for faster page load */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}