/* --- RESPONSIVE FIX: 3D AERO GLASS HERO INTERFACE SUBSYSTEM --- */
.aero-hero-viewport-container {
  position: relative;
  width: 100%;
  /* CRITICAL CHANGE: Use min-height instead of strict height to let 
     the background container expand if long text wraps on smaller viewports */
  min-height: 100vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #06000A;
  overflow-x: hidden;
}

/* Force intermediate structural wrappers to dynamically scale */
.digital-services {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CRITICAL RESPONSIVE RESTRUCTURE:
   Replaced absolute parameters with flex properties so it stretches 
   organically with text height shifts in mobile and tablet viewports.
*/
.page-header {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  padding: 60px 0; /* Prevents text elements from touching viewport edges */
}

/* WebGL canvas element dynamically pinned across changing sizes */
.hex-glass-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 1;
}

/* Premium 3D Aero Glass Specular Layer */
.aero-hero-glass-surface-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  backdrop-filter: blur(25px) brightness(0.85);
  -webkit-backdrop-filter: blur(25px) brightness(0.85);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Content Hub */
.aero-hero-foreground-content-hub {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  box-sizing: border-box;
}