 
 .homelayout-body{
    background-color: #000000;
            color: #ffffff;
            margin: 0;
            padding: 0;
            font-family: 'Funnel Display', system-ui, -apple-system, sans-serif;
            overflow: hidden;
            /* height: 100vh;
            display: flex;
            flex-direction: column;
            gap: 5px; */
                margin-top: 5px;
 }
 
 
 /* =========================================
   MAIN LAYOUT STYLES
========================================= */
        .TeA_gep_hc_wrapper {
            height: calc(100vh - 47px);
            display: flex;
            gap: 5px;
            background-color: transparent;
            padding: 0;
        }

        .TeA_gep_hc_sidebar {
            flex: 0 0 20%;
            display: flex;
            flex-direction: column;
            gap: 5px;
            background-color: transparent;
            z-index: 20;
        }

        /* =========================================
   SIDEBAR TABS
========================================= */
        .TeA_gep_hc_tab {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background-color: rgba(72, 72, 72, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-weight: 800;
            font-size: 48px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
            text-transform: capitalize;
			    border: 5px solid transparent;
            transition: border-color 1s cubic-bezier(0.2, 0.8, 0.2, 1), color 1s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .TeA_gep_hc_tab:hover {
            border: 5px solid #5c489c;
        }

        .TeA_gep_hc_tab::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background-color: rgba(92, 72, 156, 1);
            z-index: -1;
            transform: scale(0.1);
            opacity: 0;
            transition: transform 2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
        }

        .TeA_gep_hc_tab.TeA_gep_hc_active::before {
            transform: scale(1);
            opacity: 1;
        }

        .TeA_gep_hc_tab.TeA_gep_hc_active {
            color: #ffffff;
            border-color: transparent;
            background: transparent;
			border: 5px solid #5c489c;
        }

        .TeA_gep_hc_content_area {
            flex: 1;
            position: relative;
            background-color: transparent;
        }

        /* =========================================
   UNIVERSAL MAGNETIC GRID BACKGROUND
========================================= */
        .TeA_gep_hc_main_grid_container {
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            flex-wrap: wrap;
            align-content: flex-start;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .TeA_gep_hc_grid_cell {
            width: 40px;
            height: 40px;
            position: absolute;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-sizing: border-box;
            background-color: transparent;
        }

        /* =========================================
   STAGGERED PANE TRANSITIONS
========================================= */
        .TeA_gep_hc_pane {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s ease-out, visibility 0.15s;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 10;
        }

        .TeA_gep_hc_pane.TeA_gep_hc_active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            z-index: 20;
            transition: opacity 0.3s ease-in 0.15s, visibility 0s 0.15s;
        }

        /* =========================================
   VALUED TAB STYLES
========================================= */
        .TeA_gep_hc_valued_top {
            flex: 1;
            display: flex;
            gap: 5px;
            width: 100%;
            background-color: transparent;
        }

        .TeA_gep_hc_valued_stat {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 3rem;
            background-color: rgba(46, 46, 46, 1);
            transition: flex 1.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 1s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
/* HOVER */
        .TeA_gep_hc_valued_stat:hover {
            flex: 2.333;
            background-color: rgba(92, 72, 156, 1);
        }

         /* 1. Main box expansion */
/* .TeA_gep_hc_valued_stat.TeA_gep_hc_expanded { 
    flex: 2.333; 
    background-color: rgba(92, 72, 156, 1); 
} */

/* 2. Graphic box reveals */
/* .TeA_gep_hc_valued_stat:first-child.TeA_gep_hc_expanded .TeA_gep_hc_graphic_box {
    opacity: 1; 
    clip-path: inset(0 0 0 0);
}

.TeA_gep_hc_valued_stat:last-child.TeA_gep_hc_expanded .TeA_gep_hc_graphic_box {
    opacity: 1; 
    transform: translateX(0);
} */

/* 3. Animation triggers */
/* .TeA_gep_hc_valued_stat:first-child.TeA_gep_hc_expanded .TeA_gep_hc_bar_target::before {
    animation: TeA_gep_hc_popIn 0.3s forwards;
    animation-delay: calc(0.1s + (var(--step) * 0.02s)); 
}

.TeA_gep_hc_valued_stat:last-child.TeA_gep_hc_expanded .TeA_gep_hc_spiral_target::before {
    animation: TeA_gep_hc_drawSpiral 0.3s forwards;
    animation-delay: calc(0.1s + (var(--step) * 0.025s));
} */

        .TeA_gep_hc_stat_content {
            z-index: 2;
            position: relative;
            white-space: nowrap;
        }

        .TeA_gep_hc_stat_num {
            margin-bottom: 0.5rem;
            font-weight: 800;
            font-size: 48px;
            line-height: 100%;
            letter-spacing: 0%;
            text-transform: capitalize;
            color: rgba(255, 255, 255, 1);
        }

        .TeA_gep_hc_stat_text {
            color: rgba(255, 255, 255, 0.8);
            font-family: Funnel Display;
            font-weight: 600;
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 0%;
            text-transform: capitalize;
        }

        .TeA_gep_hc_graphic_box {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            aspect-ratio: 1;
            opacity: 0;
            pointer-events: none;
        }

        .TeA_gep_hc_valued_stat:first-child .TeA_gep_hc_graphic_box {
            clip-path: inset(0 100% 0 0);
            transition: opacity 0.3s ease-out, clip-path 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .TeA_gep_hc_valued_stat:first-child:hover .TeA_gep_hc_graphic_box {
            opacity: 1;
            clip-path: inset(0 0 0 0);
        }

        .TeA_gep_hc_valued_stat:last-child .TeA_gep_hc_graphic_box {
            background-color: transparent;
            transform: translateX(15%);
            transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .TeA_gep_hc_valued_stat:last-child:hover .TeA_gep_hc_graphic_box {
            opacity: 1;
            transform: translateX(0);
        }

        .TeA_gep_hc_valued_bottom {
            flex: 2;
            position: relative;
            background-color: transparent;
            overflow: hidden;
        }

        .TeA_gep_hc_valued_text_wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            pointer-events: none;
            text-align: center;
            width: 80%;
        }

        .TeA_gep_hc_valued_text {
            user-select: none;
            font-weight: 600;
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 0%;
            text-align: center;
        }

        .TeA_gep_hc_particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .TeA_gep_hc_particle {
            position: absolute;
            width: 12px;
            height: 12px;
        }

        .TeA_gep_hc_p_tl {
            top: 8%;
            left: 6%;
            background-color: #604a9e;
        }

        .TeA_gep_hc_p_tr1 {
            top: 15%;
            right: 10%;
            background-color: #e65100;
        }

        .TeA_gep_hc_p_tr2 {
            top: calc(15% + 12px);
            right: calc(10% - 12px);
            background-color: #e65100;
        }

        .TeA_gep_hc_p_bl1 {
            bottom: 15%;
            left: 18%;
            background-color: #f7a000;
        }

        .TeA_gep_hc_p_bl2 {
            bottom: calc(15% - 12px);
            left: calc(18% + 12px);
            background-color: #f7a000;
        }

        .TeA_gep_hc_p_br {
            bottom: 12%;
            right: 12%;
            background-color: #ffffff;
        }

        /* =========================================
   ANIMATED MINI-GRIDS (For Valued Top Stats)
========================================= */
        .TeA_gep_hc_anim_grid {
            display: grid;
            grid-template-columns: repeat(15, 1fr);
            grid-template-rows: repeat(15, 1fr);
            width: 100%;
            height: 100%;
            background-color: #222222;
            border-top: 1px solid #222222;
            border-left: 1px solid #222222;
            box-sizing: border-box;
        }

        .TeA_gep_hc_anim_cell {
            position: relative;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }

        .TeA_gep_hc_anim_cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(194, 185, 249, 1);
            z-index: 1;
            transform-origin: center;
        }

        .TeA_gep_hc_anim_cell::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-right: 1px solid oklch(0% 0 0);
            border-bottom: 1px solid #222222;
            z-index: 2;
            pointer-events: none;
        }

        .TeA_gep_hc_bar_target::before {
            background-color: rgba(194, 185, 249, 1);
        }

        .TeA_gep_hc_valued_stat:first-child:hover .TeA_gep_hc_bar_target::before {
            animation: TeA_gep_hc_popIn 0.3s forwards;
            animation-delay: calc(0.1s + (var(--step) * 0.02s));
        }

        @keyframes TeA_gep_hc_popIn {
            0% {
                background-color: #c6c0de;
                transform: scale(0.5);
                border-radius: 6px;
            }

            70% {
                background-color: #544885;
                transform: scale(1.05);
                border-radius: 2px;
            }

            100% {
                background-color: #544885;
                transform: scale(1);
                border-radius: 0;
            }
        }

        .TeA_gep_hc_spiral_target::before {
            background-color: rgba(194, 185, 249, 1);
        }

        .TeA_gep_hc_valued_stat:last-child:hover .TeA_gep_hc_spiral_target::before {
            animation: TeA_gep_hc_drawSpiral 0.3s forwards;
            animation-delay: calc(0.1s + (var(--step) * 0.025s));
        }

        @keyframes TeA_gep_hc_drawSpiral {
            0% {
                background-color: #c6c0de;
                transform: scale(1);
            }

            50% {
                background-color: #544885;
                transform: scale(0.85);
                border-radius: 4px;
            }

            100% {
                background-color: #544885;
                transform: scale(1);
                border-radius: 0;
            }
        }

        /* =========================================
   MARCOM TAB STYLES
========================================= */
        .TeA_gep_hc_marcom_wrapper {
            display: flex;
            width: 100%;
            flex: 1;
            gap: 5px;
            background-color: transparent;
        }

        .TeA_gep_hc_marcom_left {
            display: flex;
            flex-direction: column;
            gap: 5px;
            transition: flex 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .TeA_gep_hc_marcom_right {
            display: flex;
            flex-direction: column;
            gap: 5px;
            transition: flex 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .TeA_gep_hc_marcom_box {
            position: relative;
            cursor: pointer;
            overflow: hidden;
            transition: flex 1s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            background-color: rgba(46, 46, 46, 1);
        }

        .TeA_gep_hc_marcom_right .TeA_gep_hc_marcom_box {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_design .TeA_gep_hc_marcom_left {
            flex: 3;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_design .TeA_gep_hc_marcom_right {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_design .TeA_gep_hc_design_box {
            flex: 3;
            background-color: rgba(92, 72, 156, 1);
            cursor: default;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_design .TeA_gep_hc_digital_box {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_digital .TeA_gep_hc_marcom_left {
            flex: 3;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_digital .TeA_gep_hc_marcom_right {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_digital .TeA_gep_hc_design_box {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_digital .TeA_gep_hc_digital_box {
            flex: 3;
            background-color: rgba(92, 72, 156, 1);
            cursor: default;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_web .TeA_gep_hc_marcom_left {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_web .TeA_gep_hc_marcom_right {
            flex: 3;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_web .TeA_gep_hc_design_box {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_web .TeA_gep_hc_digital_box {
            flex: 1;
        }

        .TeA_gep_hc_marcom_wrapper.TeA_gep_hc_state_web .TeA_gep_hc_web_box {
            background-color: rgba(92, 72, 156, 1);
            cursor: default;
        }

        .TeA_gep_hc_marcom_title {
            position: absolute;
            top: calc(100% - 3.5rem);
            left: 30px;
            color: #888888;
            font-weight: 600;
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 0%;
            text-transform: capitalize;
            margin: 0;
            z-index: 10;
            transition: top 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), left 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), font-size 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .TeA_gep_hc_state_design .TeA_gep_hc_design_box .TeA_gep_hc_marcom_title,
        .TeA_gep_hc_state_digital .TeA_gep_hc_digital_box .TeA_gep_hc_marcom_title,
        .TeA_gep_hc_state_web .TeA_gep_hc_web_box .TeA_gep_hc_marcom_title {
            top: 20px;
            left: 30px;
            color: #ffffff;
            font-family: Funnel Display;
            font-weight: 800;
            font-size: 64px;
            line-height: 100%;
            letter-spacing: 0%;
        }

        .TeA_gep_hc_marcom_icon {
            position: absolute;
            top: 20px;
            right: 30px;
            opacity: 0;
            transform: translateY(-100px);
            transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            z-index: 10;
        }

        .TeA_gep_hc_marcom_icon svg {
            width: 40px;
            height: 40px;
        }

        .TeA_gep_hc_state_design .TeA_gep_hc_design_box .TeA_gep_hc_marcom_icon,
        .TeA_gep_hc_state_digital .TeA_gep_hc_digital_box .TeA_gep_hc_marcom_icon,
        .TeA_gep_hc_state_web .TeA_gep_hc_web_box .TeA_gep_hc_marcom_icon {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }

        .TeA_gep_hc_marcom_content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0;
            clip-path: inset(100% 0 0 0);
            transform: translateY(20px);
            transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), clip-path 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            pointer-events: none;
            z-index: 5;
            display: flex;
            flex-direction: column;
        }

        .TeA_gep_hc_state_design .TeA_gep_hc_design_box .TeA_gep_hc_marcom_content,
        .TeA_gep_hc_state_digital .TeA_gep_hc_digital_box .TeA_gep_hc_marcom_content,
        .TeA_gep_hc_state_web .TeA_gep_hc_web_box .TeA_gep_hc_marcom_content {
            opacity: 1;
            clip-path: inset(0 0 0 0);
            transform: translateY(0);
            pointer-events: auto;
            transition-delay: 0.2s;
        }

        .TeA_gep_hc_marcom_desc {
            margin-bottom: 30px;
            padding: 0 30px;
            max-width: 100%;
            color: #ffffff;
            font-family: Funnel Sans;
            font-weight: 400;
            font-size: 20px;
            line-height: 120%;
            letter-spacing: 0%;
        }

        .TeA_gep_hc_marcom_buttons {
            display: flex;
            width: 100%;
            gap: 5px;
            background-color: #000000;
            border-top: 5px solid #000000;
        }

        .TeA_gep_hc_btn {
            position: relative;
            height: 50px;
            padding: 0 1rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            transition: opacity 0.3s;
            border: none;
            box-sizing: border-box;
            font-weight: 600;
            font-size: 18px;
            line-height: 120%;
            letter-spacing: 0%;
            text-align: center;
            text-transform: capitalize;
        }

        .TeA_gep_hc_btn:hover {
            opacity: 1;
            color: inherit;
        }

        .TeA_gep_hc_btn_white:hover {
            opacity: 1;
            color: #000000 !important;
        }

        .TeA_gep_hc_btn_primary {
            background-color: rgba(237, 157, 33, 1);
            color: #ffffff;
        }

        .TeA_gep_hc_btn_white {
            background-color: #ffffff;
            color: #000000 !important;
        }

        .TeA_gep_hc_corner {
            position: absolute;
            width: 8px;
            height: 8px;
            transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            pointer-events: none;
        }

        .TeA_gep_hc_btn_primary .TeA_gep_hc_corner {
            border-color: #ffffff;
        }

        .TeA_gep_hc_btn_white .TeA_gep_hc_corner {
            border-color: #000000;
        }

        .TeA_gep_hc_c_tl {
            top: 5px;
            left: 5px;
            border-top: 1px solid;
            border-left: 1px solid;
        }

        .TeA_gep_hc_c_tr {
            top: 5px;
            right: 5px;
            border-top: 1px solid;
            border-right: 1px solid;
        }

        .TeA_gep_hc_c_bl {
            bottom: 5px;
            left: 5px;
            border-bottom: 1px solid;
            border-left: 1px solid;
        }

        .TeA_gep_hc_c_br {
            bottom: 5px;
            right: 5px;
            border-bottom: 1px solid;
            border-right: 1px solid;
        }

        .TeA_gep_hc_btn:hover .TeA_gep_hc_c_tl {
            transform: translate(10px, 5px);
        }

        .TeA_gep_hc_btn:hover .TeA_gep_hc_c_tr {
            transform: translate(-10px, 5px);
        }

        .TeA_gep_hc_btn:hover .TeA_gep_hc_c_bl {
            transform: translate(10px, -5px);
        }

        .TeA_gep_hc_btn:hover .TeA_gep_hc_c_br {
            transform: translate(-10px, -5px);
        }

        .TeA_gep_hc_btn_text {
            z-index: 1;
        }

        .TeA_gep_hc_arrow_wrapper {
            position: relative;
            width: 15px;
            height: 15px;
            margin-left: 0.75rem;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .TeA_gep_hc_btn_arrow {
            position: absolute;
            width: 100%;
            height: 100%;
            transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            z-index: 1;
        }

        .TeA_gep_hc_btn_primary .TeA_gep_hc_btn_arrow path {
            fill: #ffffff;
        }

        .TeA_gep_hc_btn_white .TeA_gep_hc_btn_arrow path {
            fill: #000000;
        }

        .TeA_gep_hc_arrow_1 {
            transform: translateX(0);
        }

        .TeA_gep_hc_arrow_2 {
            transform: translateX(-150%);
        }

        .TeA_gep_hc_btn:hover .TeA_gep_hc_arrow_1 {
            transform: translateX(150%);
        }

        .TeA_gep_hc_btn:hover .TeA_gep_hc_arrow_2 {
            transform: translateX(0);
        }

        /* =========================================
   PARTNER TAB STYLES
========================================= */
        .TeA_gep_hc_partner_container {
            display: flex;
            flex-direction: column;
            height: 100%;
            gap: 5px;
        }

        .TeA_gep_hc_partner_top {
            flex: 1;
            display: flex;
            flex-direction: row;
            background-color: rgba(46, 46, 46, 1);
            transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            overflow: hidden;
            position: relative;
            cursor: default;
        }

        .TeA_gep_hc_partner_bottom {
            flex: 2;
            background-color: rgba(0, 0, 0, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            overflow: hidden;
            transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .TeA_gep_hc_partner_top:hover {
            flex: 2;
        }

        .TeA_gep_hc_partner_top:hover~.TeA_gep_hc_partner_bottom {
            flex: 1;
        }

        .TeA_gep_hc_partner_stat {
            flex: 0 0 250px;
            padding: clamp(0.9375rem, -15.5625rem + 20.625vw, 3rem);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            z-index: 20;
            background-color: rgba(46, 46, 46, 1);
        }

        .TeA_gep_hc_partner_stat_num {
            margin-bottom: 1rem;
            font-family: Funnel Display;
            font-weight: 800;
            font-size: 48px;
            line-height: 100%;
            letter-spacing: 0%;
            text-transform: capitalize;
        }

        .TeA_gep_hc_partner_stat_text {
            font-family: Funnel Display;
            font-weight: 600;
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 0%;
            text-transform: capitalize;
        }

        .TeA_gep_hc_testimonials_wrapper {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(300px);
            transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            pointer-events: none;
            padding-top: 0rem;
        }

        .TeA_gep_hc_partner_top:hover .TeA_gep_hc_testimonials_wrapper {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            transition-delay: 0.1s;
        }

        .TeA_gep_hc_test_title {
            margin-bottom: 1.5rem;
            text-align: left;
            z-index: 20;
            position: relative;
            font-family: Funnel Display;
            font-weight: 600;
            font-size: 32px;
            line-height: 120%;
            letter-spacing: 0%;
            text-transform: capitalize;
        }

        .TeA_gep_hc_testimonial_swiper_container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

.TeA_gep_hc_testimonial_swiper_container::after {
   content: '';
         position: absolute;
       top: 0;
         right: 0;
        bottom: 0;
        width: 120px;
       z-index: 10;
         pointer-events: none;
          background: linear-gradient(-90deg, #2E2E2E 0%, rgba(46, 46, 46, 0) 100%);

        }




        .TeA_gep_hc_testimonial_swiper_container::before {
       content: '';
        position: absolute;
        top: 0;
        left: 0;
         bottom: 0;
           width: 120px;
           z-index: 10;
           pointer-events: none;
          background: linear-gradient(90deg, #2E2E2E 0%, rgba(46, 46, 46, 0) 100%);

        }

        .TeA_gep_hc_testimonial_swiper {
            width: 100%;
            /*padding: 15px 0 15px 2.5rem;*/
            padding: 15px 15px 15px 0;
        }

        .TeA_gep_hc_testimonial_swiper .swiper-wrapper {
            align-items: center;
        }

        .TeA_gep_hc_testimonial_swiper .swiper-wrapper {
            transition-timing-function: linear !important;
        }

        .swiper-slide.TeA_gep_hc_testimonial_card {
            background: transparent;
            border: 0.78px solid rgba(255, 255, 255, 0.5);
            padding: 1.6rem 0.6rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            opacity: 0.5;
/*             opacity:1; */
            transition: opacity 0.6s ease, border-color 0.6s ease;
            box-sizing: border-box;
            /* height: auto;
    min-height: 250px; */
            position: relative;
        }

        .swiper-slide-next.TeA_gep_hc_testimonial_card {
            opacity: 1;
            border-color: #666666;
        }

        .TeA_gep_hc_test_corner {
            position: absolute;
            width: 12px;
            height: 12px;
            border-color: #e65100;
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }

        .swiper-slide-next .TeA_gep_hc_test_corner {
            opacity: 1;
        }

        .TeA_gep_hc_tc_tl {
            top: -8px;
            left: -8px;
            border-top: 0.78px solid rgba(230, 81, 37, 1);
            border-left: 0.78px solid rgba(230, 81, 37, 1);
        }

        .TeA_gep_hc_tc_tr {
            top: -8px;
            right: -8px;
            border-top: 0.78px solid rgba(230, 81, 37, 1);
            border-right: 0.78px solid rgba(230, 81, 37, 1);
        }

        .TeA_gep_hc_tc_bl {
            bottom: -8px;
            left: -8px;
            border-bottom: 0.78px solid rgba(230, 81, 37, 1);
            border-left: 0.78px solid rgba(230, 81, 37, 1);
        }

        .TeA_gep_hc_tc_br {
            bottom: -8px;
            right: -8px;
            border-bottom: 0.78px solid rgba(230, 81, 37, 1);
            border-right: 0.78px solid rgba(230, 81, 37, 1);
        }

        .TeA_gep_hc_testimonial_text {
            /*color: #F5F5F5;*/
            color:#ffffff;
            margin-bottom: 0rem;
            transition: color 0.6s ease;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-family: Funnel Sans;
            font-weight: 400;
            font-size: 14.04px;
            line-height: 120%;
            letter-spacing: 0%;
        }

        .swiper-slide-next .TeA_gep_hc_testimonial_text {
            color: rgb(240, 240, 240);
        }

        .TeA_gep_hc_testimonial_author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
        }

        .TeA_gep_hc_author_avatar {
            flex: 0 0 45px;
            width: 45px;
            height: 45px;
            background-color: #F5F5F5;
            border-radius: 50%;
            transition: background-color 0.6s ease;
        }

        .swiper-slide-next .TeA_gep_hc_author_avatar {
            background-color: #ffffff;
        }

        .TeA_gep_hc_author_info {
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .TeA_gep_hc_author_info div:first-child {
            font-weight: bold;
            font-size: 0.95rem;
            color: #F5F5F5;
            transition: color 0.6s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .swiper-slide-next .TeA_gep_hc_author_info div:first-child {
            color: #ffffff;
        }

        .TeA_gep_hc_author_info div:last-child {
            font-size: 0.8rem;
            color: #F5F5F5;
            margin-top: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .TeA_gep_hc_logos_wrapper {
            display: flex;
            flex-direction: column;
            width: 100%;
            z-index: 2;
        }

        .TeA_gep_hc_logo_swiper {
            width: 100%;
            padding: 0;
            overflow: hidden;
        }

        .TeA_gep_hc_logo_swiper .swiper-wrapper {
            transition-timing-function: linear !important;
            align-items: center;
        }

        .TeA_gep_hc_logo_slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .TeA_gep_hc_logo_item {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #F5F5F5;
            fill: #666666;
            transition: color 0.4s ease, fill 0.4s ease;
            cursor: pointer;
        }

        .TeA_gep_hc_logo_item svg {
            height: 40px;
            width: auto;
        }

        .TeA_gep_hc_logo_item:hover {
            color: #ffffff;
            fill: #ffffff;
        }

        .TeA_gep_hc_logos_track_2 {
            opacity: 1;
/*             max-height: 100px; */
            margin-top: 3rem;
            transition: opacity 0.5s ease, max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .TeA_gep_hc_partner_top:hover~.TeA_gep_hc_partner_bottom .TeA_gep_hc_logos_track_2 {
            opacity: 0;
            max-height: 0;
            margin-top: 0;
            pointer-events: none;
        }





    /* <!-- MAIN LAYOUT MOBILE --> */

    
    /* Main Wrapper - Exactly 100dvh */
    .mobile_tabs_hc_ch_nW_na-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        color: #FFF;
        /* height: 100dvh; */
        height: calc(100dvh - 40px);
        background-color: #050505;
        background-image:
            linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 30px 30px;
        position: relative;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
        overflow: hidden;
        /* Contain inner scrolling */
    }

    /* Header Mockup */
    .mobile_tabs_hc_ch_nW_na-header {
        flex-shrink: 0;
        /* Prevent shrinking */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: rgba(5, 5, 5, 0.95);
        position: relative;
        z-index: 50;
    }

    .mobile_tabs_hc_ch_nW_na-logo-wrap {
        display: flex;
        align-items: center;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 1.1rem;
    }

    .mobile_tabs_hc_ch_nW_na-logo-svg {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .mobile_tabs_hc_ch_nW_na-menu-icon {
        width: 26px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile_tabs_hc_ch_nW_na-menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
    }

    .mobile_tabs_hc_ch_nW_na-menu-icon span:nth-child(2) {
        width: 70%;
        margin-left: auto;
    }

    /* Content Area - Scrolls dynamically in the remaining space */
    .mobile_tabs_hc_ch_nW_na-content-wrapper {
        flex: 1;
        padding: 0;
        position: relative;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: none;
    }

    .mobile_tabs_hc_ch_nW_na-content-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Tabs Navigation (Inside scroll wrapper so it is NOT fixed) */
/*     .mobile_tabs_hc_ch_nW_na-tabs-nav {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 25px 20px 30px 20px;
        background: transparent;
        position: relative;
        z-index: 40;
		
    } */

.mobile_tabs_hc_ch_nW_na-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 20px 0px 20px;
	margin-bottom:20px;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 40;
}

    .mobile_tabs_hc_ch_nW_na-tab-btn {
        background: transparent;
        color: #fff;
        border: none;
        padding: 5px 0;
        transition: background 0.3s;
        position: relative;
        z-index: 10;
        border-radius: 0px;
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: capitalize;
    }

    .mobile_tabs_hc_ch_nW_na-tab-btn.active {
        background: #563b7e;
        /* Deep purple active state */
    }

    /* Panes Wrapper */
    .mobile_tabs_hc_ch_nW_na-panes-wrapper {
        padding: 0 20px 40px 20px;
    }

    .mobile_tabs_hc_ch_nW_na-pane {
        display: none !important;
    }

    .mobile_tabs_hc_ch_nW_na-pane.active {
        display: block !important;
        position: relative;
    }

    /* ============================== */
    /* TAB 1: Valued                  */
    /* ============================== */
    .mobile_tabs_hc_ch_nW_na-t1-hero {
        position: relative;
        padding: 30px 0px 70px 0px;
        margin-bottom: 1rem;
    }

    .mobile_tabs_hc_ch_nW_na-dec-box {
        position: absolute;
        width: 8px;
        height: 8px;
        background: rgba(230, 81, 37, 1);
    }

    .mobile_tabs_hc_ch_nW_na-dec-box.top-left {
        top: 0;
        left: 0;
        background: #563b7e;
    }

    .mobile_tabs_hc_ch_nW_na-dec-box.top-right {
        top: 5px;
        right: 10px;
    }

    .mobile_tabs_hc_ch_nW_na-dec-box.top-right-2 {
        top: 14px;
        right: 0px;
    }

    .mobile_tabs_hc_ch_nW_na-dec-box.mid-left {
        top: 150px;
        left: -10px;
        background: rgba(237, 157, 33, 1);
    }

    .mobile_tabs_hc_ch_nW_na-dec-box.mid-left-2 {
        top: 162px;
        left: -2px;
        background: rgba(237, 157, 33, 1);
    }

    .mobile_tabs_hc_ch_nW_na-dec-box.mid-right {
        bottom: 0;
        right: 0;
        background: #fff;
    }

    .mobile_tabs_hc_ch_nW_na-t1-text {
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 18px;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: capitalize;
    }

    .mobile_tabs_hc_ch_nW_na-t1-card {
        background: rgba(46, 46, 46, 1);
        display: flex;
        height: 100%;
        margin-bottom: 40px;
        overflow: hidden;
        border: 1px solid rgba(92, 72, 156, 1);
    }

    .mobile_tabs_hc_ch_nW_na-pane .mobile_tabs_hc_ch_nW_na-t1-card:last-child {
        margin-bottom: 0;
    }

    .mobile_tabs_hc_ch_nW_na-t1-card-left {
        flex: 0.45;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .mobile_tabs_hc_ch_nW_na-t1-card-title {
        margin-bottom: 8px;
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 32px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
    }

    .mobile_tabs_hc_ch_nW_na-t1-card-sub {
        color: rgba(255, 255, 255, 0.8);
        font-family: Funnel Sans;
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0%;
    }

    .mobile_tabs_hc_ch_nW_na-t1-card-right {
        flex: 0.55;
        position: relative;
    }

    .mobile_tabs_hc_ch_nW_na-t1-img-mock {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ============================== */
    /* TAB 2: Marcom                  */
    /* ============================== */
    .mobile_tabs_hc_ch_nW_na-t2-card {
        background: rgba(46, 46, 46, 1);
        border: 1px solid rgba(92, 72, 156, 1);
        padding: 15px 15px;
        margin-bottom: 20px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile_tabs_hc_ch_nW_na-pane .mobile_tabs_hc_ch_nW_na-t2-card:last-child {
        margin-bottom: 0;
    }

    .mobile_tabs_hc_ch_nW_na-t2-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .mobile_tabs_hc_ch_nW_na-t2-title {
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 32px;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: capitalize;
    }

    .mobile_tabs_hc_ch_nW_na-t2-icon {
        width: 32px;
        height: 32px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.5;
    }

    .mobile_tabs_hc_ch_nW_na-t2-desc {
        color: rgba(255, 255, 255, 0.8);
        font-family: Funnel Sans;
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0%;
    }

    /* ============================== */
    /* TAB 3: Partner & Testimonials  */
    /* ============================== */
    .mobile_tabs_hc_ch_nW_na-t3-main {
        background: rgba(46, 46, 46, 1);
        padding: 15px 0 15px 0;
        margin-bottom: 30px;
        position: relative;
        border: 1px solid rgba(92, 72, 156, 1);

    }

    .mobile_tabs_hc_ch_nW_na-t3-top-info {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .mobile_tabs_hc_ch_nW_na-t3-num {
        margin-bottom: 5px;
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 32px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
    }

    .mobile_tabs_hc_ch_nW_na-t3-num-sub {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        font-family: Funnel Sans;
        font-weight: 400;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0%;
    }

    .mobile_tabs_hc_ch_nW_na-t3-heading {
        margin-bottom: 10px;
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 32px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
    }

    /* Swiper Container for Testimonials */
    .mobile_tabs_hc_ch_nW_na-test-swiper {
        width: 100%;
        padding: 10px 0 30px 0;
        overflow: hidden;
    }

    .mobile_tabs_hc_ch_nW_na-test-swiper .swiper-wrapper {
        align-items: center;
    }

    .mobile_tabs_hc_ch_nW_na-test-swiper .swiper-wrapper,
    .mobile_tabs_hc_ch_nW_na-logo-swiper .swiper-wrapper {
        transition-timing-function: linear !important;
        /* Enables smooth sliding */
    }

    .mobile_tabs_hc_ch_nW_na-test-slide {
        transition: opacity 0.3s;
        opacity: 0.4;
    }

    .swiper-slide-active.mobile_tabs_hc_ch_nW_na-test-slide {
        opacity: 1;
    }

    /* Testimonial Box with Orange Corners */
    .mobile_tabs_hc_ch_nW_na-test-box {
        padding: 18px 9px;
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border: 0.78px solid rgba(255, 255, 255, 0.5);
    }

    .mobile_tabs_hc_ch_nW_na-corner {
        position: absolute;
        width: 12px;
        height: 12px;
        border: 2px solid #f37021;
        display: none;
    }

    .swiper-slide-active .mobile_tabs_hc_ch_nW_na-corner {
        display: block;
    }

    .mobile_tabs_hc_ch_nW_na-tl {
        top: -10px;
        left: -10px;
        border-right: none;
        border-bottom: none;
    }

    .mobile_tabs_hc_ch_nW_na-tr {
        top: -10px;
        right: -10px;
        border-left: none;
        border-bottom: none;
    }

    .mobile_tabs_hc_ch_nW_na-bl {
        bottom: -10px;
        left: -10px;
        border-right: none;
        border-top: none;
    }

    .mobile_tabs_hc_ch_nW_na-br {
        bottom: -10px;
        right: -10px;
        border-left: none;
        border-top: none;
    }

    .mobile_tabs_hc_ch_nW_na-test-text-p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        font-family: Funnel Sans;
        font-weight: 400;
        font-size: 14.04px;
        line-height: 120%;
        letter-spacing: 0%;
    }

    .mobile_tabs_hc_ch_nW_na-test-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile_tabs_hc_ch_nW_na-avatar {
        width: 35px;
        height: 35px;
        background: #fff;
        border-radius: 50%;
    }

    .mobile_tabs_hc_ch_nW_na-auth-name {
        font-family: Funnel Display;
        font-weight: 600;
        font-size: 14.04px;
        line-height: 120%;
        letter-spacing: 0%;
        text-align: center;
        text-transform: capitalize;
    }

    .mobile_tabs_hc_ch_nW_na-auth-company {
        font-family: Funnel Sans;
        font-weight: 400;
        font-size: 14.04px;
        line-height: 120%;
        letter-spacing: 0%;
    }

    /* Continuous Image Logo Slider (Two Separate Rows to bypass Grid Loop Bug) */
    .mobile_tabs_hc_ch_nW_na-logo-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile_tabs_hc_ch_nW_na-logo-swiper {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .mobile_tabs_hc_ch_nW_na-logo-slide {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile_tabs_hc_ch_nW_na-logo-item {
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile_tabs_hc_ch_nW_na-logo-item img {
        height: auto;
        width: auto;
        max-width: 100%;
        object-fit: contain;
/*         filter: grayscale(100%) brightness(200%); */
    }

    .swiper-wrapper {
        transition-timing-function: linear !important;
    }

    .mobile_tabs_hc_ch_nW_na-dec-box_orange {
        background-color: rgba(237, 157, 33, 1);
    }

