 
        :root {
            --primary: #fc6702;
            --primary-dark: #d45602;
            --dark: #1a1a1b;
            --darker: #111111;
            --grey-bg: #f8f9fa;
            --text: #333333;
            --white: #ffffff;
        }

        * { box-sizing: border-box; }
       
	
       .zeliox-neo-4000 .container { width:auto !important; max-width: 1200px; margin: 0 auto; padding: 0 25px; }
	   .zeliox-neo-4000 p {
		  margin: revert !important;  color: revert !important; font-size: 1.1em !important; padding: revert !important;
		}
		
		 .zeliox-neo-4000 h1 {
		  margin: revert !important;  color: revert !important; 
		}
		
		span.accent{ font-size:1.1em !important;}
		
		.section.bg-dark h2{ color:var(--white);}
		
		section.section.mobile-power h3{ font-size:1.8em !important;}
		
		.zeliox-neo-4000 h3, .zeliox-neo-4000 h4{ font-size: revert !important;   }
		
       .zeliox-neo-4000 .section { padding: 80px 0; }
        .bg-light { background-color: var(--grey-bg); }
        .bg-dark { background-color: var(--dark); color: white; }
        .text-center { text-align: center; }
		
		.section.bg-dark p {color:#fff !important;}

        /* --- Hero Section with Video Fallback --- */
        .hero {
            position: relative;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--darker); /* Fallback background color */
            color: white;
            text-align: center;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            opacity: 0.4;
            object-fit: cover;
            z-index: 1;
        }

        .hero-content { position: relative; z-index: 2; max-width: 850px; }
		.hero-content p{color: #fff !important; font-size:1.2em !important;}
        .hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin: 15px 0; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; color:#fff !important; }
        
        .distributor-tag { 
            background: var(--primary); 
            padding: 6px 18px; 
            border-radius: 4px; 
            font-weight: 700; 
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* --- Row Alignment Fix (4 cards in a row) --- */
        .feature-row { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); /* Forces 4 columns on desktop */
            gap: 20px; 
            margin-top: 60px; /*//-60px;*/
            position: relative;
            z-index: 10;
        }

        .feature-card {
            background: white;
            padding: 30px 20px;
            border-bottom: 4px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            border-radius: 4px;
        }

        .feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
        .feature-card h3 { font-size: 1.1rem; margin: 10px 0; }
        .feature-card p { font-size: 0.9rem; color: #666; }

        /* --- Performance Grid --- */
        .stats-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 25px; 
            margin-top: 40px;
        }

        .stat-item {
            padding: 25px;
            background: rgba(255,255,255,0.05);
            border-left: 4px solid var(--primary);
            border-radius: 0 4px 4px 0;
        }

       

        /* --- Technical Specs --- */
        .specs-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; }
        .specs-table td { padding: 18px; border-bottom: 1px solid #eee; font-size: 0.95rem; }
        .specs-table td:first-child { font-weight: 700; width: 35%; color: var(--primary); background: #fafafa; }

        /* --- Use Cases --- */
        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .use-case-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .use-case-img { height: 180px; width: 100%; object-fit: cover; }
        .use-case-content { padding: 20px; }

        /* --- Buttons --- */
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 700;
            transition: 0.3s;
        }
        .btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
		
		
		  /* --- Grid Layouts --- */
        .flex-grid { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
        .flex-item { flex: 1; min-width: 320px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
		
		 /* --- Performance Stats (No Downtime) --- */
        .stat-item {
            padding: 30px;
            background: var(--darker);
            border-left: 5px solid var(--primary);
            border-radius: 4px;
        }
        .stat-item h3 { color: var(--primary); font-size: 2rem !important; margin: 0 0 10px; }

        /* --- Technical Specs Table --- */
        .specs-wrapper { background: white; /*border-radius: 12px;*/ overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }
        .specs-table { width: 100%; border-collapse: collapse; }
        .specs-table td { padding: 20px 30px; border-bottom: 1px solid var(--grey-bg); vertical-align: top; }
        .specs-table td:first-child { font-weight: 700; color: var(--primary); width: 35%; background: #fdfdfd; text-transform: uppercase; font-size: 0.8rem; }
        .specs-table strong { color: #000; display: block; font-size: 1.1rem; }

       

        img { max-width: 100%; height: auto; display: block; }
        ul.feature-list { padding-left: 20px; list-style: square; }
        ul.feature-list li { margin-bottom: 8px; }
		

        /* --- Responsive Queries --- */
        @media (max-width: 1024px) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { 
            .feature-row { grid-template-columns: 1fr; margin-top: 20px; }
            .stats-grid { grid-template-columns: 1fr; }
            .hero { height: 60vh; }
        }
		
		@media (max-width: 576px){
            .feature-row { grid-template-columns: 1fr 1fr; margin-top: 20px; }
            .stats-grid { grid-template-columns: 1fr 1fr; }
            .hero { height: 60vh; }
        }
		
		
		
		
		/* --- Minimalist Fast-Load Header --- */
        .hero-static {
            background: radial-gradient(circle at 70% 50%, #2a2a2b 0%, #1a1a1b 100%);
            color: white;
            padding: 100px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .hero-content { flex: 1; min-width: 320px; }
        .hero-image { flex: 1; min-width: 320px; text-align: center; }
        .hero-image img { max-width: 100%; height: auto; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)); }

        .distributor-tag {
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 20px; background:none !important;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1;
            margin: 0 0 25px !important;
            text-transform: uppercase; color:#fff !important;
        }
		
		
		
/* Ensure the flex container allows the video to fill the height */
.flex-grid {
    display: flex;
    gap: 0; /* Optional: Remove gap if you want video to touch the table */
    align-items: stretch; /* Makes the video column as tall as the table column */
    flex-wrap: wrap;
}

/* The video styling */
.technical-detail-full {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the video fill the entire area like a background */
    display: block;
    box-shadow: none !important; /* Removes any shadows */
    border-radius: 0 !important; /* Removes rounded corners */
    border: none !important;     /* Removes any borders */
}

/* Remove padding from the flex item containing the video */
.flex-item {
    padding: 0 !important;
    overflow: hidden; /* Ensures no video spillover */
}

/* Media query to handle mobile view */
@media (max-width: 768px) {
    .technical-detail-full {
        height: 300px; /* Gives the video a fixed height on mobile so it doesn't disappear */
    }
}	



/* --- 5-Year Warranty Full-Width Section --- */
.warranty-fullwidth {
    background-color: var(--primary);
    color: #ffffff !important;
    padding: 100px 0;
    width: 100%;
    margin: 0;
}

.warranty-fullwidth,
.warranty-fullwidth * {
  color: var(--white);
}

.warranty-title {
    color: #ffffff !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1;
    margin: 15px 0;
    text-transform: uppercase;
}

.warranty-lead {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.4;
    max-width: 600px;
}

.warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.warranty-feature-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.warranty-feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.warranty-feature-box i {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.warranty-feature-box h4 {
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.warranty-feature-box p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Badge Styling */
.warranty-badge-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warranty-badge-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
    /* This turns the colored logo into a clean white version */
    filter: brightness(0) invert(1);
}

.warranty-btn-white {
    background: #ffffff;
    color: var(--primary);
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.warranty-btn-white:hover {
    background: #f4f4f4;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


@media (max-width: 992px) {
    .warranty-title { font-size: 2.5rem; }
    .warranty-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .warranty-title { font-size: 2.5rem; }
    .warranty-grid { grid-template-columns: 1fr 1fr; }
}



/* Container for the video */
.video-wrapper {
    padding: 30px !important; /* Adjust this value for a larger or smaller gap */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff; /* Or match your section background */
}

/* --- CSS-Only Warranty Seal (Fixed Overlap) --- */
.warranty-seal {
    width: 320px;
    height: 320px;
    border: 8px solid #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
}

.seal-stars {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0;
    letter-spacing: 5px;
}



.seal-stars::before {
  content: "\f005 \f005 \f005 \f005 \f005"; /* 5 stars */
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  color: var(--white); 
}


.zeliox-neo-4000 h3.warranty-number {
    font-size: 9rem !important; /* Large and Bold */
    font-weight: 900 !important;
    line-height: 0.8;
    margin: 0;
    color: #ffffff;
}

.warranty-text-wrap {
    text-align: center;
    margin-top: 5px;
}

.warranty-text-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}

.warranty-text-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

/* The Ribbon - Positioned absolutely to prevent overlap */
.warranty-ribbon {
    position: absolute;
    bottom: -15px; /* Sits slightly over the bottom edge */
    background: #ffffff;
    color: var(--primary);
    padding: 8px 25px;
    font-weight: 900;
    font-size: 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
}

/*--------image wrapper---------*/	

.img-wrapper{ align-items: center; gap: 60px; }
	
.display{  }


img.use-case-img:hover {
    transform: scale(1.2);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}