  :root {
            --primary: #0F87AA; 
            --gray-bg: #e6e6e6;
            --text-dark: #333;
            --text-light: #fff;
            --transition: all 0.5s ease-in-out; 
        }

   

        .slider-widget {
            width: 100%;
			display:block;             
            position: relative;
        }

        /* --- Navigation --- */
        .nav-wrapper {
            display: flex;
            align-items: center;
            padding: 10px 0;
            z-index: 10;
        }

        .nav-arrow {
            background: #EFF7FF; 
            border: 1px solid var(--primary);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin: 0 10px;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .nav-arrow:hover {
            background: var(--primary);
            color: white;
			border: 1px solid var(--primary);
        }

        .tabs-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 15px;
            padding: 20px 5px;
            width: 100%;
            -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
            scrollbar-width: none; /* Firefox */
        }
        .tabs-container::-webkit-scrollbar { display: none; }

        .tab-item {
            min-width: 200px;
            height: 140px;
            background: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            padding: 15px;
            transition: 0.3s;
            position: relative;
            flex-shrink: 0;
        }

        .tab-item i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            transition: 0.3s;
        }

        .tab-item h4 {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-dark);
            text-transform: uppercase;
            font-weight: 600;
        }

        .tab-item.active {
            background-color: var(--primary);
            transform: scale(1.02);
        }

        .tab-item.active h4, .tab-item.active i {
            color: var(--text-light);
        }
		.tab-item.active i img{
		filter: brightness(0) invert(1);
		}
        /* Triangle Pointer */
        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid var(--primary);
            z-index: 15;
        }

        /* --- Content Area --- */
        .content-viewport {
            width: 100%;
            overflow: hidden; /* Hides the slides that are off screen */
            background-color: var(--primary);
			 
        }

        .content-track {
            display: flex; /* Stacks slides side-by-side */
            width: 100%;
            transition: transform 0.5s ease-in-out; /* The sliding animation */
        }

        /* Individual Slide Styles */
        .content-slide {
            display: flex;
			min-width: 100%; /* Important: Each slide takes 100% of viewport */           
            min-height: 500px;
			
            
        }

        .slide-text {
            display: flex;
			flex-direction:column;
			width:60%;
            padding: 60px;                        
            color: var(--white);
			/*align-items: center;*/
			justify-content: center;		 
            background-color: var(--primary);
			}
			
  
        .slide-text h2 {
            font-size: 24px;
			line-height:normal;
			margin:0 0 20px 0;
			font-weight:var(--font-bold);
			color: var(--white);
			}

        .slide-image {
            display: flex;
			width:40%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

 

        /* Responsive */
        @media (max-width: 768px) {
		    
			.nav-arrow {
            
            width: 30px;
            height: 30px;
 
            font-size: 1rem;
             
        }
		
            .content-slide { flex-direction: column; }
            .slide-text { width:100%; padding: 30px;}
            .slide-text h2 { font-size: 1.6rem; }
            .slide-image { min-height: 250px; width: 100%; }
            .tab-item { min-width: 140px; height: 110px; }
            .tab-item i { font-size: 1.8rem; }
			.tab-item i img{
			width:40px;
		      
		}
        }