
        :root {
            --primary-color: #61bd45;
            --secondary-color: #4fc55f;
            --dark-color: #41a84fd2;
            --medium-dark: #409e4db9;
            --text-dark: #334155;
            --text-gray: #64748b;
            --light-bg: #f8fafc;
            --border-color: #e2e8f0;
            --white: #ffffff;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        /* ============================================
           PAGE LOADER
        ============================================ */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(97, 189, 69, 0.1);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .breadcumb-wrapper {
            background-size: cover; 
            background-position: center; 
            background-repeat: no-repeat; 
            width: 100%; 
            min-height: 300px; 
            display: flex; 
            align-items: center; 
            justify-content: center;
        }

        .breadcumb-content {
            text-align: center; 
            color: #fff;
        }

        .breadcumb-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .breadcumb-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcumb-menu li {
            display: inline-block;
            margin-right: 10px;
        }

        .breadcumb-menu a {
            color: #fff;
            text-decoration: none;
        }

        .breadcumb-menu a:hover {
            color: var(--primary-color);
        }

        /* ============================================
           MAIN TEAM SECTION
        ============================================ */
        .team-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ============================================
           CATEGORY SECTIONS
        ============================================ */
        .team-category {
            margin-bottom: 100px;
        }

        .team-category:last-child {
            margin-bottom: 0;
        }

        .category-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 20px;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* ============================================
           TEAM MEMBER CARDS
        ============================================ */
        .team-card {
            position: relative;
            cursor: pointer;
            margin-bottom: 30px;
            transition: var(--transition-smooth);
        }

        .team-card-inner {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: var(--transition-smooth);
        }

        .team-card:hover .team-card-inner {
            box-shadow: var(--shadow-xl);
            transform: translateY(-8px);
        }

        .team-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 100%;
            overflow: hidden;
            background: var(--light-bg);
        }

        .team-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
            filter: grayscale(0%);
        }

        .team-card:hover .team-image {
            transform: scale(1.05);
            filter: grayscale(0%);
        }

        .team-hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 70%);
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .team-card:hover .team-hover-overlay {
            opacity: 1;
        }

        .team-info {
            padding: 24px;
            text-align: center;
            background: var(--white);
        }

        .team-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--dark-color);
        }

        .team-role {
            font-size: 0.9375rem;
            color: var(--text-gray);
            margin-bottom: 16px;
            font-weight: 500;
        }

        .team-social {
            display: flex;
            gap: 10px;
            justify-content: center;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition-smooth);
        }

        .team-card:hover .team-social {
            opacity: 1;
            transform: translateY(0);
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--light-bg);
            color: var(--text-dark);
            text-decoration: none;
            transition: var(--transition-smooth);
            font-size: 14px;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .social-link.linkedin:hover {
            background: #0077b5;
        }

        .social-link.twitter:hover {
            background: #1da1f2;
        }

        .social-link.github:hover {
            background: #333;
        }

        /* ============================================
           IMAGE FALLBACK
        ============================================ */
        .img-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* ============================================
           MODAL
        ============================================ */
        .team-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.85);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
            overflow-y: auto;
            padding: 40px 20px;
            backdrop-filter: blur(4px);
        }

        .team-modal.active {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: var(--white);
            border-radius: 16px;
            max-width: 900px;
            width: 100%;
            margin: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .team-modal.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
            z-index: 10;
            color: var(--white);
            font-size: 24px;
            backdrop-filter: blur(10px);
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg);
        }

        .modal-header {
            position: relative;
            padding: 60px 40px;
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--medium-dark) 100%);
            border-radius: 16px 16px 0 0;
            color: var(--white);
        }

        .modal-header-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .modal-image-wrapper {
            width: 180px;
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            background: var(--white);
        }

        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .modal-header-text {
            flex: 1;
        }

        .modal-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .modal-role {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 24px;
            font-weight: 500;
        }

        .modal-social {
            display: flex;
            gap: 12px;
        }

        .modal-social .social-link {
            background: rgba(255,255,255,0.15);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.2);
            width: 40px;
            height: 40px;
            backdrop-filter: blur(10px);
        }

        .modal-social .social-link:hover {
            background: var(--white);
            border-color: var(--white);
        }

        .modal-social .social-link.linkedin:hover {
            color: #0077b5;
        }

        .modal-social .social-link.twitter:hover {
            color: #1da1f2;
        }

        .modal-social .social-link.github:hover {
            color: #333;
        }

        .modal-body {
            padding: 50px 40px;
        }

        .modal-bio {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--text-gray);
        }

        .modal-bio p {
            margin-bottom: 20px;
        }

        .modal-bio p:last-child {
            margin-bottom: 0;
        }

        /* ============================================
           CALL TO ACTION
        ============================================ */
        .cta-section {
            padding: 80px 0;
            text-align: center;
            background: var(--light-bg);
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
            letter-spacing: -0.5px;
        }

        .cta-description {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.0625rem;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(97, 189, 69, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(97, 189, 69, 0.4);
            color: var(--white);
        }

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 991px) {
            .modal-header-content {
                flex-direction: column;
                text-align: center;
            }

            .modal-image-wrapper {
                margin: 0 auto;
            }

            .modal-social {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .breadcumb-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 2rem;
            }

            .category-title {
                font-size: 1.75rem;
            }

            .modal-name {
                font-size: 2rem;
            }

            .modal-body {
                padding: 40px 24px;
            }

            .modal-header {
                padding: 40px 24px;
            }

            .cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .breadcumb-wrapper {
                height: 250px;
            }
            
            .breadcumb-title {
                font-size: 28px;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .team-category {
                margin-bottom: 60px;
            }

            .modal-image-wrapper {
                width: 140px;
                height: 140px;
            }

            .modal-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }

        /* ============================================
           ANIMATIONS
        ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
        }

        .fade-in.visible {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Stagger animation delays */
        .team-card:nth-child(1) { transition-delay: 0s; }
        .team-card:nth-child(2) { transition-delay: 0.05s; }
        .team-card:nth-child(3) { transition-delay: 0.1s; }
        .team-card:nth-child(4) { transition-delay: 0.15s; }
        .team-card:nth-child(5) { transition-delay: 0.2s; }
        .team-card:nth-child(6) { transition-delay: 0.25s; }

        /* Desktop */
        .breadcumb-wrapper {
            height: 500px;
        }
        /* Tablet */
        @media (max-width: 992px) {
            .breadcumb-wrapper {
                height: 400px;
            }
        }
        /* Mobile */
        @media (max-width: 576px) {
            .breadcumb-wrapper {
                height: 250px;
            }
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #3CB043;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .scroll-top:hover {
            background: #072e75;
            transform: translateY(-3px);
        }
        
        .scroll-top svg {
            width: 100%;
            height: 100%;
        }
    