   .team-detail-hero {
            position: relative;
            padding: 140px 0 80px;
            background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
            color: var(--white-color);
            margin-top: 0px;
            text-align: center;
            overflow: hidden;
        }

        .team-detail-hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .team-detail-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }

        .breadcrumb a {
            color: var(--white-color);
            opacity: 0.8;
            text-decoration: none;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        .breadcrumb span {
            opacity: 0.6;
        }

        .team-detail-hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .team-detail-hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        /* team-detail-main*/
        .team-detail-main {
            padding: 5rem 0;
            background: var(--background-light);
        }

        .profile-container {
            /* display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: start; */
            display: flex;
            width: 100%;
            box-sizing: border-box;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .profile-sidebar {
            background: var(--white-color);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: var(--shadow-light);
            position: sticky;
            top: 100px;
        }

        .profile-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 2rem;
            border: 4px solid var(--primary-color);
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-basic-info {
            text-align: center;
            margin-bottom: 2rem;
        }

        .profile-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .profile-position {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .profile-contact {
            background: var(--background-light);
            border-radius: 0.5rem;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid #eee;
        }

        .contact-item:last-child {
            border-bottom: none;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
        }

        .contact-info {
            flex: 1;
        }

        .contact-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 0.25rem;
        }

        .contact-value {
            font-weight: 600;
            color: var(--text-dark);
        }

        .profile-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--background-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            color: var(--white-color);
            transform: translateY(-3px);
        }

        .profile-content {
            background: var(--white-color);
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: var(--shadow-light);
        }

        .profile-section {
            margin-bottom: 3rem;
        }

        .profile-section:last-child {
            margin-bottom: 0;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
        }

        .profile-bio {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 1.1rem;
            text-align: justify;
        }

        /* Statistics and figures*/
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            background: var(--background-light);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* skills */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .skill-category {
            background: var(--background-light);
            border-radius: 0.5rem;
            padding: 1.5rem;
        }

        .skill-category-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .skill-list {
            list-style: none;
        }

        .skill-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .skill-item:last-child {
            border-bottom: none;
        }

        .skill-name {
            color: var(--text-dark);
        }

        .skill-level {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* certificates */
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 1.5rem;
        }

        .certificate-item {
            background: var(--background-light);
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            transition:transform 0.3s ease, box-shadow 0.3s ease;
        }

        .certificate-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }

        .certificate-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .certificate-icon i {
            color: var(--white-color);
            font-size: 1.5rem;
        }

        .certificate-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .certificate-org {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .certificate-year {
            color: var(--primary-color);
            font-weight: 600;
        }

        /*services-list */
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .service-item {
            background: var(--background-light);
            border-radius: 0.5rem;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .service-item:hover {
            background: var(--primary-color);
            color: var(--white-color);
        }

        .service-item:hover .service-icon {
            background: var(--white-color);
            color: var(--primary-color);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            transition: background 0.3s ease, color 0.3s ease;
        }

        .service-name {
            font-weight: 600;
        }

        /*  testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--background-light);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial-text {
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin: 0;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .author-info span {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* CTA */
        .profile-cta {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white-color);
            padding: 4rem 0;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        @media (max-width: 1024px) {
            .profile-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .profile-sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .team-detail-hero-title {
                font-size: 2.5rem;
            }
            
            .profile-content {
                padding: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-grid,
            .certificates-grid,
            .services-list,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }
