
        .team-hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/images/banners/team-banner.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .team-hero-section:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, #f9fafc 0%, transparent 100%);
            z-index: 1;
        }

        .team-hero-content {
            position: relative;
            z-index: 2;
        }

        .team-hero-content h1 {
            font-size: 56px;
            margin-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-hero-subtitle {
            font-size: 20px;
            color: #F8821D;
            font-weight: 400;
            margin-bottom: 30px;
        }

        /* Team Introduction - Modern Design */
        .team-intro-section {
            padding: 100px 0;
            background: #f9fafc;
            position: relative;
        }

        .team-intro-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #F8821D 0%, #ff9f43 100%);
        }

        .team-intro-content .main-heading {
            font-size: 42px;
            font-weight: 700;
            color: #222;
            line-height: 1.3;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .team-intro-content .main-heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #F8821D;
            border-radius: 2px;
        }

        .team-intro-content .intro-text {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
        }

        .highlight-box {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(248, 130, 29, 0.1);
            border-left: 5px solid #F8821D;
            margin-top: 40px;
        }

        .highlight-box h4 {
            font-size: 32px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            position: relative;
        }

        .highlight-box h4:before {
            content: '';
            position: absolute;
            left: -40px;
            top: 0;
            width: 5px;
            height: 100%;
            background: #F8821D;
        }

        .highlight-box p {
            font-size: 17px;
            line-height: 1.7;
            color: #555;
        }

        .team-intro-image {
            position: relative;
        }

        .team-intro-image .image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .team-intro-image .image-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .team-intro-image .image-wrapper:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(248, 130, 29, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        /* Stats Section - Modern Cards */
        .team-stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8821D 0%, #ff9f43 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .team-stats-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .stat-card:hover {
            transform: translateY(-20px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: white;
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .stat-card:hover:before {
            transform: scaleX(1);
        }

        .stat-number {
            font-size: 60px;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stat-text {
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Achievements Section - Modern Grid */
        .achievements-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .achievements-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, #f9fafc 0%, transparent 100%);
        }

        .section-title-wrap {
            position: relative;
            margin-bottom: 60px;
        }

        .section-title-wrap .section-sub-title {
            font-size: 16px;
            font-weight: 600;
            color: #F8821D;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-title-wrap .section-sub-title:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #F8821D;
        }

        .section-title-wrap .heading {
            font-size: 42px;
            font-weight: 700;
            color: #222;
            line-height: 1.3;
        }

        .section-title-wrap .text-color-primary {
            color: #F8821D !important;
            position: relative;
        }

        .section-title-wrap .text-color-primary:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(248, 130, 29, 0.2);
            z-index: -1;
        }

        .achievement-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .achievement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(248, 130, 29, 0.15);
            border-color: #F8821D;
        }

        .achievement-card:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: rgba(248, 130, 29, 0.05);
            border-radius: 0 0 0 100%;
            transition: all 0.3s ease;
        }

        .achievement-card:hover:before {
            width: 100px;
            height: 100px;
            background: rgba(248, 130, 29, 0.1);
        }

        .achievement-icon {
            width: 70px;
            height: 70px;
            background: rgba(248, 130, 29, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .achievement-card:hover .achievement-icon {
            background: #F8821D;
            transform: scale(1.1);
        }

        .achievement-icon i {
            font-size: 30px;
            color: #F8821D;
            transition: all 0.3s ease;
        }

        .achievement-card:hover .achievement-icon i {
            color: white;
        }

        .achievement-card h4 {
            font-size: 22px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .achievement-card p {
            color: #666;
            line-height: 1.7;
            font-size: 16px;
            margin-bottom: 0;
        }

        /* Responsive Styles */
        @media (max-width: 1199px) {
            .team-hero-content h1 {
                font-size: 48px;
            }

            .team-intro-content .main-heading {
                font-size: 38px;
            }

            .highlight-box h4 {
                font-size: 28px;
            }

            .section-title-wrap .heading {
                font-size: 38px;
            }
        }

        @media (max-width: 991px) {
            .team-hero-section {
                padding: 100px 0 60px;
                background-attachment: scroll;
            }

            .team-hero-content h1 {
                font-size: 42px;
            }

            .team-intro-content {
                margin-bottom: 50px;
            }

            .team-intro-content .main-heading {
                font-size: 36px;
            }

            .team-intro-image .image-wrapper {
                transform: none;
            }

            .team-intro-image .image-wrapper:hover {
                transform: scale(1.02);
            }

            .stat-number {
                font-size: 50px;
            }

            .section-title-wrap .heading {
                font-size: 34px;
            }

        }

        @media (max-width: 767px) {
            .team-hero-section {
                padding: 80px 0 50px;
            }

            .team-hero-content h1 {
                font-size: 36px;
            }

            .team-hero-subtitle {
                font-size: 18px;
            }

            .team-intro-section,
            .team-stats-section,
            .achievements-section {
                padding: 70px 0;
            }

            .team-intro-content .main-heading {
                font-size: 32px;
            }

            .highlight-box {
                padding: 30px;
            }

            .highlight-box h4 {
                font-size: 26px;
            }

            .stat-number {
                font-size: 42px;
            }

            .section-title-wrap .heading {
                font-size: 30px;
            }

            .achievement-card {
                padding: 30px 25px;
                margin-bottom: 30px;
            }

        }

        @media (max-width: 575px) {
            .team-hero-content h1 {
                font-size: 32px;
            }

            .team-intro-content .main-heading {
                font-size: 28px;
            }

            .highlight-box h4 {
                font-size: 24px;
            }

            .stat-number {
                font-size: 36px;
            }

            .section-title-wrap .heading {
                font-size: 26px;
            }

            .achievement-card h4 {
                font-size: 20px;
            }
        }
    