 /* Spotlight Effect - Modified to Blue */
      .spotlight-card {
        position: relative;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
      }
      .spotlight-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(0, 164, 224, 0.15), transparent 40%);
        opacity: 0;
        transition: opacity 0.5s;
        z-index: 1;
        pointer-events: none;
      }
      .spotlight-card:hover::before {
        opacity: 1;
      }
      .spotlight-card > * {
        position: relative;
        z-index: 2;
      }

      /* IMPACT ROW BASE STYLES (Mobile Default) */
	 
	  	  
	  #impact-section { height: 100vh; overflow: hidden; display: flex; align-items: center; background-color: #000; }
      .impact-track { display: flex; flex-nowrap: nowrap; width: fit-content; align-items: center; padding-left: 5vw; padding-right: 5vw; }
      .impact-row {
        position: relative;
        width: 90vw;
        height: 90vh;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        border-radius: 20px;
        margin-right: 5vw;
        background: #0a0a0a;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      }
      .impact-row:last-child { margin-right: 0; }
      .impact-content-glass {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        width: 60%;
        height: 100%;
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 10;
        position: relative;
      }
      .impact-list li { margin-bottom: 0.75rem; display: flex; align-items: flex-start; gap: 0.5rem; }
      .impact-list li::before { content: "•"; color: #00A4E0; font-weight: bold; }

      @media (min-width: 768px) and (max-width: 1279px) {
        .impact-row { height: 100vh; min-height: 100vh; justify-content: center; }
        .impact-content-glass { width: 90%; height: auto; margin: auto; padding: 3rem; border-right: none; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; }
      }

      @media (max-width: 767px) {
        #impact-section { height: auto; overflow: visible; display: block; }
		.impact-row:last-child { margin-right: auto; }
        .impact-track { flex-direction: column; width: 100%; padding: 2rem 0; }
        .impact-row { width: 95vw; margin: 0 auto 2rem; height: auto; min-height: auto; border-radius: 20px; justify-content: center; padding: 2rem 0; }
        .impact-content-glass { width: 90%; height: auto; padding: 2rem; margin: 0 auto; border-right: none; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; }
      }



      .floating-nav-gradient {
        background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
      }

      
      /* Table Styles */
      .browser-table th {
        text-align: left;
        padding: 1rem;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #9ca3af;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        cursor: pointer;
        user-select: none;
        white-space: nowrap;
        transition: color 0.3s, background 0.3s; /* Added transition */
      }
      .browser-table th:hover {
        color: white;
        background: rgba(255,255,255,0.05);
      }
      .browser-table td {
        padding: 1.25rem 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: #e5e7eb;
        font-size: 0.9rem;
        white-space: nowrap;
      }
      .browser-table tr:hover td {
        background: rgba(255,255,255,0.05);
        color: #fff;
      }

      /* Sort Indicator Styles */
      .sort-icon {
        display: inline-block;
        margin-left: 0.25rem;
        width: 1em;
        text-align: center;
        opacity: 0.7;
      }
      .th-active {
        color: #00A4E0 !important;
      }
      .th-active .sort-icon {
        opacity: 1;
      }
      
      /* Curtain Reveal for Table Rows */
      .curtain-row {
        position: relative;
        /* Ensure the pseudo-element positions relative to the row */
      }
      .curtain-row::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: var(--curtain-width, 100%); /* Controlled by JS */
        background-color: #096d97; /* zdi-darkblue */
        z-index: 50;
        pointer-events: none;
      }

      /* Section 7 Horizontal Layout */
      .industries-track {
        display: flex;
        flex-wrap: nowrap;
        width: fit-content;
        height: auto; /* Changed from 100vh to auto to prevent clipping on mobile overlap */
        min-height: 100vh;
        align-items: center;
        padding-left: 5vw;
        padding-right: 5vw;
      }
      
      .industries-grid-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        gap: 2rem;
        width: 90vw;
      }

      .industry-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Changed from space-between to flex-start since image is gone */
        height: 100%;
        overflow: hidden; 
      }

      /* TABLET / PHABLET GRID (md to xl) - 2 Cols Centered */
      @media (min-width: 768px) and (max-width: 1279px) {
        .industries-grid-container {
             grid-template-columns: repeat(2, 1fr);
             gap: 1.5rem;
             width: 80vw;
             margin: 0 auto;
        }
        /* Remove Bento Spans */
        .industry-card { grid-column: auto !important; grid-row: auto !important; }
      }

      /* DESKTOP (xl+) - Uniform Grid (Updated from Bento) */
      @media (min-width: 1280px) {
        .industries-grid-container {
          grid-template-columns: repeat(4, 400px); /* Uniform Columns */
          grid-template-rows: repeat(2, 1fr); /* 2 Rows */
          height: 80vh;
          gap: 1.5rem;
          width: auto;
        }
        
        .industries-track {
            height: 100vh; /* Restore 100vh only for desktop horizontal scroll */
        }
        
        /* Removed Bento Nth-Child selectors */
      }

      @media (min-width: 2050px){
        .hero-slide{
          padding-left: 3rem !important;
          padding-right: 3rem !important;
        }
       
      }

       @media (min-width: 1690px){
          #hero-carousel{
            padding-bottom:20px;
          }
       }

      @media (min-width: 1900px){
        #hero-carousel{
            padding-bottom:40px;
          }
        }

      @media (min-width: 2048px){
        #hero-carousel{
            padding-bottom:80px;
          }
        }

      @media (min-width: 2200px){
        h1.hero-title {font-size:7.5rem; }
        #text-hero-slide-conteiner{

          max-width: 1200px;
        }

        
        }
	  
	  
	  
	  