/* Root CSS Variables - Color Palette */
:root {
  --color-black: #000000;
  --color-dark-blue-gray: #284857;
  --color-light-gray: #D0D0D0;
  --color-very-light-gray: #F1F1F1;
  --color-white: #FFFFFF;
}

/* Global Body Styles */
body {
  background-color: var(--color-white);
  color: var(--color-black);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Modern Hero Section */
.hero-section {
  min-height: 30vh;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-blue-gray) 50%, var(--color-black) 100%);
  overflow: hidden;
  padding: 1rem 0;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(208, 208, 208, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 208, 208, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 208, 208, 0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.floating-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 10%;
  animation-delay: 7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-50px) rotate(180deg); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  margin: 0;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-wrapper {
  position: relative;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: none;
  animation: none;
}

.logo-wrapper:hover {
  transform: none;
  box-shadow: none;
}

.hero-logo {
  max-width: 700px;
  max-height: 280px;
  width: auto;
  height: auto;
  display: block;
  filter: none;
}

.text-container {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: var(--color-white);
  font-family: 'Helvetica Neue', sans-serif;
}

.title-line {
  display: block;
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
  background: linear-gradient(45deg, var(--color-light-gray), var(--color-white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-light-gray);
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-weight: 300;
  animation: fadeIn 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Dynamic particle animation */
@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    min-height: 25vh;
  }
  
  .text-container {
    padding-left: 0;
  }
  
  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero-logo {
    max-width: 500px;
    max-height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .hero-container {
    padding: 1rem;
  }
  
  .hero-content {
    gap: 1.5rem;
    min-height: 20vh;
  }
  
  .hero-logo {
    max-width: 400px;
    max-height: 150px;
  }
  
  .hero-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-section {
    min-height: 25vh;
    padding: 1rem 0;
  }
}

/* Modern Hexagon Cards Section */
.hexagon-section {
  background: linear-gradient(135deg, 
    var(--color-white) 0%, 
    var(--color-very-light-gray) 30%,
    var(--color-white) 70%,
    var(--color-very-light-gray) 100%
  );
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  --bg-shift: 0px;
}

.hexagon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Hexagonal pattern overlay */
    radial-gradient(circle at 25% 25%, rgba(40, 72, 87, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(40, 72, 87, 0.03) 0%, transparent 50%),
    /* Subtle grid pattern */
    linear-gradient(rgba(40, 72, 87, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 72, 87, 0.015) 1px, transparent 1px);
  background-size: 
    300px 300px,
    300px 300px,
    60px 60px,
    60px 60px;
  background-position: 
    var(--bg-shift, 0px) var(--bg-shift, 0px), 
    calc(150px + var(--bg-shift, 0px)) calc(150px + var(--bg-shift, 0px)), 
    0 0, 
    0 0;
  pointer-events: none;
  animation: backgroundShift 20s ease-in-out infinite;
  transition: all 0.3s ease;
}

.hexagon-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Floating geometric shapes */
    radial-gradient(ellipse at 20% 80%, rgba(208, 208, 208, 0.08) 0%, transparent 30%),
    radial-gradient(ellipse at 80% 20%, rgba(40, 72, 87, 0.06) 0%, transparent 35%),
    radial-gradient(ellipse at 60% 60%, rgba(208, 208, 208, 0.04) 0%, transparent 40%);
  pointer-events: none;
  animation: floatingShapes 15s ease-in-out infinite;
  mix-blend-mode: multiply;
}

@keyframes backgroundShift {
  0%, 100% { 
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  25% { 
    transform: translateX(10px) translateY(-5px);
    opacity: 0.8;
  }
  50% { 
    transform: translateX(-5px) translateY(10px);
    opacity: 1;
  }
  75% { 
    transform: translateX(-10px) translateY(-5px);
    opacity: 0.9;
  }
}

@keyframes floatingShapes {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  33% { 
    transform: scale(1.1) rotate(120deg);
    opacity: 0.8;
  }
  66% { 
    transform: scale(0.9) rotate(240deg);
    opacity: 0.4;
  }
}

.hexagon-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.2;
}

.title-accent {
  background: linear-gradient(45deg, var(--color-dark-blue-gray), var(--color-black));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--color-dark-blue-gray);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.hexagon-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
  height: 550px; /* Set height to accommodate absolute positioned hexagons with proper spacing */
}

/* Top row container */
.hexagon-grid::before {
  content: '';
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Top row - 3 hexagons side by side with proper spacing */
.hex-item:nth-child(1),
.hex-item:nth-child(2),
.hex-item:nth-child(3) {
  position: absolute !important;
  top: 0;
}

/* Proper spacing for 300px hexagons - approximately 260px apart horizontally */
.hex-item:nth-child(1) { left: calc(50% - 390px); } /* Left hexagon */
.hex-item:nth-child(2) { left: calc(50% - 130px); } /* Center hexagon */
.hex-item:nth-child(3) { left: calc(50% + 130px); } /* Right hexagon */

/* Bottom row - 2 hexagons offset to create honeycomb pattern */
.hex-item:nth-child(4),
.hex-item:nth-child(5) {
  position: absolute !important;
  top: 225px; /* Proper vertical spacing for honeycomb effect */
}
.hex-item:nth-child(1) { left: calc(50% - 420px); } /* Left bottom - centered between 1st and 2nd */
.hex-item:nth-child(2) { left: calc(50% - 120px); } /* Left bottom - centered between 1st and 2nd */
.hex-item:nth-child(3) { left: calc(50% + 180px); } /* Left bottom - centered between 1st and 2nd */
.hex-item:nth-child(4) { left: calc(50% - 270px);top:225px; } /* Left bottom - centered between 1st and 2nd */
.hex-item:nth-child(5) { left: calc(50% + 30px); }   /* Right bottom - centered between 2nd and 3rd */

.hex-item {
  position: relative;
  animation: slideInScale 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(0px) scale(0.8);
}

.hex-item:nth-child(1) { animation-delay: 0.1s; }
.hex-item:nth-child(2) { animation-delay: 0.2s; }
.hex-item:nth-child(3) { animation-delay: 0.3s; }
.hex-item:nth-child(4) { animation-delay: 0.4s; }
.hex-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced Hexagon Styles - Working Implementation */
.hex {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  perspective: 1000px;
}

.hex-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.hex:hover .hex-inner {
  transform: rotateY(180deg);
}

.hex:hover {
  transform: translateY(0px);
  transition: transform 0.3s ease;
}

.hex-front, .hex-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hex-front {
  background-color: var(--color-dark-blue-gray);
  background-size: cover;
  background-position: center;
  transform: rotateY(0deg);
}

.hex-back {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(40, 72, 87, 0.95) 50%,
    rgba(0, 0, 0, 0.98) 100%
  );
  transform: rotateY(180deg);
}

.hex-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hex-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hex-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
  text-align: center;
  max-width: 90%;
}

.hex-back-content {
  padding: 2rem 1.5rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  text-align: center;
}

.hex-back-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.hex-back-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  max-width: 85%;
}

.hex-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), var(--color-white));
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hover Effects - Removed colored glows */

/* Improved overlay for better text contrast */
.hex-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(40, 72, 87, 0.7) 50%, 
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hex:hover .hex-overlay {
  opacity: 0.9;
}

/* Animated Background Geometric Shapes */
.hexagon-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.geometric-shape {
  position: absolute;
  opacity: 0.15;
  animation: geometricFloat 12s ease-in-out infinite;
  will-change: transform, opacity;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 0s;
  opacity: 0.2;
}

.shape-2 {
  top: 70%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-light-gray), var(--color-dark-blue-gray));
  border-radius: 50%;
  animation-delay: 2s;
  opacity: 0.18;
}

.shape-3 {
  top: 30%;
  right: 20%;
  width: 70px;
  height: 70px;
  background: linear-gradient(225deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  animation-delay: 4s;
  opacity: 0.16;
}

.shape-4 {
  bottom: 20%;
  left: 15%;
  width: 50px;
  height: 50px;
  background: linear-gradient(315deg, var(--color-light-gray), var(--color-dark-blue-gray));
  transform: rotate(45deg);
  animation-delay: 6s;
  opacity: 0.14;
}

.shape-5 {
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: linear-gradient(45deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 8s;
  opacity: 0.12;
}

.shape-6 {
  top: 15%;
  left: 75%;
  width: 65px;
  height: 65px;
  background: linear-gradient(180deg, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation-delay: 1s;
  opacity: 0.15;
}

.shape-7 {
  bottom: 35%;
  right: 25%;
  width: 55px;
  height: 55px;
  background: linear-gradient(90deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation-delay: 3s;
  opacity: 0.17;
}

.shape-8 {
  top: 60%;
  left: 25%;
  width: 45px;
  height: 45px;
  background: linear-gradient(270deg, var(--color-light-gray), var(--color-dark-blue-gray));
  transform: rotate(30deg);
  animation-delay: 5s;
  opacity: 0.13;
}

.shape-9 {
  top: 25%;
  left: 30%;
  width: 75px;
  height: 75px;
  background: linear-gradient(60deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 7s;
  opacity: 0.11;
}

.shape-10 {
  bottom: 15%;
  right: 35%;
  width: 40px;
  height: 40px;
  background: linear-gradient(120deg, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation-delay: 9s;
  opacity: 0.16;
}

.shape-11 {
  top: 45%;
  right: 5%;
  width: 85px;
  height: 85px;
  background: linear-gradient(300deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  animation-delay: 11s;
  opacity: 0.14;
}

.shape-12 {
  bottom: 45%;
  left: 35%;
  width: 95px;
  height: 95px;
  background: linear-gradient(150deg, var(--color-light-gray), var(--color-dark-blue-gray));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 10s;
  opacity: 0.1;
}

/* Additional 20 shapes for an even richer background */
.shape-13 {
  top: 5%;
  left: 40%;
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation-delay: 1.5s;
  opacity: 0.12;
}

.shape-14 {
  top: 85%;
  left: 60%;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 3.5s;
  opacity: 0.16;
}

.shape-15 {
  top: 20%;
  right: 40%;
  width: 25px;
  height: 25px;
  background: linear-gradient(225deg, var(--color-light-gray), var(--color-dark-blue-gray));
  transform: rotate(15deg);
  animation-delay: 5.5s;
  opacity: 0.14;
}

.shape-16 {
  bottom: 10%;
  left: 5%;
  width: 70px;
  height: 70px;
  background: linear-gradient(315deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  animation-delay: 7.5s;
  opacity: 0.13;
}

.shape-17 {
  top: 35%;
  left: 10%;
  width: 45px;
  height: 45px;
  background: linear-gradient(90deg, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation-delay: 9.5s;
  opacity: 0.15;
}

.shape-18 {
  top: 75%;
  left: 80%;
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation-delay: 11.5s;
  opacity: 0.18;
}

.shape-19 {
  top: 55%;
  right: 15%;
  width: 85px;
  height: 85px;
  background: linear-gradient(270deg, var(--color-light-gray), var(--color-dark-blue-gray));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 13.5s;
  opacity: 0.11;
}

.shape-20 {
  bottom: 30%;
  left: 45%;
  width: 40px;
  height: 40px;
  background: linear-gradient(60deg, var(--color-dark-blue-gray), transparent);
  border-radius: 50%;
  animation-delay: 0.5s;
  opacity: 0.17;
}

.shape-21 {
  top: 12%;
  left: 25%;
  width: 65px;
  height: 65px;
  background: linear-gradient(120deg, var(--color-light-gray), transparent);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  animation-delay: 2.5s;
  opacity: 0.14;
}

.shape-22 {
  bottom: 5%;
  right: 45%;
  width: 20px;
  height: 20px;
  background: linear-gradient(300deg, var(--color-dark-blue-gray), var(--color-light-gray));
  transform: rotate(60deg);
  animation-delay: 4.5s;
  opacity: 0.19;
}

.shape-23 {
  top: 40%;
  left: 65%;
  width: 75px;
  height: 75px;
  background: linear-gradient(150deg, var(--color-light-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 6.5s;
  opacity: 0.12;
}

.shape-24 {
  top: 80%;
  left: 35%;
  width: 50px;
  height: 50px;
  background: linear-gradient(210deg, var(--color-dark-blue-gray), transparent);
  border-radius: 50%;
  animation-delay: 8.5s;
  opacity: 0.16;
}

.shape-25 {
  top: 65%;
  right: 50%;
  width: 35px;
  height: 35px;
  background: linear-gradient(330deg, var(--color-light-gray), var(--color-dark-blue-gray));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation-delay: 10.5s;
  opacity: 0.15;
}

.shape-26 {
  bottom: 25%;
  right: 8%;
  width: 90px;
  height: 90px;
  background: linear-gradient(240deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 12.5s;
  opacity: 0.1;
}

.shape-27 {
  top: 8%;
  right: 60%;
  width: 28px;
  height: 28px;
  background: linear-gradient(15deg, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation-delay: 14.5s;
  opacity: 0.18;
}

.shape-28 {
  bottom: 60%;
  left: 20%;
  width: 55px;
  height: 55px;
  background: linear-gradient(75deg, var(--color-dark-blue-gray), var(--color-light-gray));
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  animation-delay: 1.2s;
  opacity: 0.13;
}

.shape-29 {
  top: 50%;
  left: 85%;
  width: 42px;
  height: 42px;
  background: linear-gradient(195deg, var(--color-light-gray), transparent);
  transform: rotate(45deg);
  animation-delay: 3.2s;
  opacity: 0.16;
}

.shape-30 {
  bottom: 40%;
  right: 30%;
  width: 68px;
  height: 68px;
  background: linear-gradient(255deg, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation-delay: 5.2s;
  opacity: 0.14;
}

.shape-31 {
  top: 15%;
  left: 85%;
  width: 45px;
  height: 45px;
  background: radial-gradient(circle, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation: float-up 18s ease-in-out infinite;
  animation-delay: 0.8s;
  opacity: 0.12;
}

.shape-32 {
  bottom: 70%;
  left: 12%;
  width: 75px;
  height: 75px;
  background: conic-gradient(from 45deg, var(--color-dark-blue-gray), transparent, var(--color-dark-blue-gray));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: spin-and-fade 22s linear infinite;
  animation-delay: 1.5s;
  opacity: 0.16;
}

.shape-33 {
  top: 45%;
  right: 8%;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-dark-gray), transparent);
  border-radius: 50%;
  animation: float-side 16s ease-in-out infinite;
  animation-delay: 3.2s;
  opacity: 0.11;
}

.shape-34 {
  bottom: 25%;
  left: 75%;
  width: 85px;
  height: 85px;
  background: linear-gradient(45deg, var(--color-dark-blue-gray), transparent, var(--color-light-gray));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: rotate-pulse 20s ease-in-out infinite;
  animation-delay: 2.8s;
  opacity: 0.15;
}

.shape-35 {
  top: 80%;
  left: 45%;
  width: 52px;
  height: 52px;
  background: radial-gradient(ellipse, var(--color-dark-gray), transparent);
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  animation: float-up 24s ease-in-out infinite;
  animation-delay: 4.7s;
  opacity: 0.13;
}

.shape-36 {
  bottom: 55%;
  right: 45%;
  width: 42px;
  height: 42px;
  background: linear-gradient(225deg, var(--color-light-gray), transparent);
  border-radius: 50%;
  animation: pulse-glow 15s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0.14;
}

.shape-37 {
  top: 25%;
  left: 25%;
  width: 65px;
  height: 65px;
  background: conic-gradient(from 180deg, var(--color-dark-blue-gray), transparent, var(--color-dark-gray));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: spin-and-fade 19s linear infinite;
  animation-delay: 6.1s;
  opacity: 0.16;
}

.shape-38 {
  bottom: 10%;
  left: 60%;
  width: 48px;
  height: 48px;
  background: linear-gradient(315deg, var(--color-dark-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float-side 17s ease-in-out infinite;
  animation-delay: 2.3s;
  opacity: 0.12;
}

.shape-39 {
  top: 60%;
  right: 72%;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, var(--color-light-gray), var(--color-dark-blue-gray), transparent);
  border-radius: 50%;
  animation: rotate-pulse 21s ease-in-out infinite;
  animation-delay: 3.9s;
  opacity: 0.15;
}

.shape-40 {
  bottom: 85%;
  right: 15%;
  width: 35px;
  height: 35px;
  background: linear-gradient(90deg, var(--color-dark-gray), transparent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float-up 14s ease-in-out infinite;
  animation-delay: 5.5s;
  opacity: 0.11;
}

.shape-41 {
  top: 35%;
  left: 88%;
  width: 58px;
  height: 58px;
  background: conic-gradient(from 270deg, var(--color-dark-blue-gray), transparent, var(--color-light-gray));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: pulse-glow 23s ease-in-out infinite;
  animation-delay: 4.2s;
  opacity: 0.13;
}

.shape-42 {
  bottom: 45%;
  left: 5%;
  width: 44px;
  height: 44px;
  background: linear-gradient(180deg, var(--color-dark-gray), transparent);
  border-radius: 50%;
  animation: spin-and-fade 16s linear infinite;
  animation-delay: 1.8s;
  opacity: 0.12;
}

.shape-43 {
  top: 70%;
  right: 25%;
  width: 78px;
  height: 78px;
  background: radial-gradient(ellipse, var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  animation: float-side 25s ease-in-out infinite;
  animation-delay: 6.8s;
  opacity: 0.16;
}

.shape-44 {
  bottom: 30%;
  right: 60%;
  width: 40px;
  height: 40px;
  background: linear-gradient(60deg, var(--color-light-gray), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: rotate-pulse 18s ease-in-out infinite;
  animation-delay: 3.6s;
  opacity: 0.14;
}

.shape-45 {
  top: 50%;
  left: 3%;
  width: 66px;
  height: 66px;
  background: conic-gradient(from 90deg, var(--color-dark-gray), transparent, var(--color-dark-blue-gray));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: float-up 20s ease-in-out infinite;
  animation-delay: 7.3s;
  opacity: 0.15;
}

.shape-46 {
  bottom: 65%;
  left: 82%;
  width: 36px;
  height: 36px;
  background: linear-gradient(270deg, var(--color-dark-blue-gray), transparent);
  border-radius: 50%;
  animation: pulse-glow 17s ease-in-out infinite;
  animation-delay: 2.7s;
  opacity: 0.11;
}

.shape-47 {
  top: 85%;
  right: 40%;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle, var(--color-light-gray), var(--color-dark-gray), transparent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: spin-and-fade 24s linear infinite;
  animation-delay: 5.1s;
  opacity: 0.13;
}

.shape-48 {
  bottom: 20%;
  left: 35%;
  width: 62px;
  height: 62px;
  background: linear-gradient(150deg, var(--color-dark-gray), transparent, var(--color-light-gray));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: float-side 22s ease-in-out infinite;
  animation-delay: 4.4s;
  opacity: 0.14;
}

.shape-49 {
  top: 40%;
  right: 95%;
  width: 46px;
  height: 46px;
  background: conic-gradient(from 315deg, var(--color-dark-blue-gray), transparent);
  border-radius: 50%;
  animation: rotate-pulse 19s ease-in-out infinite;
  animation-delay: 6.7s;
  opacity: 0.12;
}

.shape-50 {
  bottom: 75%;
  right: 78%;
  width: 70px;
  height: 70px;
  background: radial-gradient(ellipse, var(--color-light-gray), var(--color-dark-blue-gray), transparent);
  clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  animation: float-up 26s ease-in-out infinite;
  animation-delay: 8.2s;
  opacity: 0.15;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .hexagon-grid {
    height: 500px;
  }
  
  .hex {
    width: 280px;
    height: 280px;
  }
  
  /* Adjust positioning for smaller hexagons - 280px width with proper spacing */
  .hex-item:nth-child(1) { left: calc(50% - 364px); position: absolute !important; }
  .hex-item:nth-child(2) { left: calc(50% - 121px); position: absolute !important; }
  .hex-item:nth-child(3) { left: calc(50% + 121px); position: absolute !important; }
  .hex-item:nth-child(4) { left: calc(50% - 243px); top: 210px; position: absolute !important; }
  .hex-item:nth-child(5) { left: calc(50% + 0px); top: 210px; position: absolute !important; }
}

@media screen and (max-width: 992px) {
  .hexagon-grid {
    height: 460px;
  }
  
  .hex {
    width: 260px;
    height: 260px;
  }
  
  /* Adjust positioning for smaller hexagons - 260px width with proper spacing */
  .hex-item:nth-child(1) { left: calc(50% - 338px); position: absolute !important; }
  .hex-item:nth-child(2) { left: calc(50% - 113px); position: absolute !important; }
  .hex-item:nth-child(3) { left: calc(50% + 113px); position: absolute !important; }
  .hex-item:nth-child(4) { left: calc(50% - 225px); top: 195px; position: absolute !important; }
  .hex-item:nth-child(5) { left: calc(50% + 0px); top: 195px; position: absolute !important; }
}

@media screen and (max-width: 768px) {
  .hexagon-section {
    padding: 4rem 0;
  }
  
  .hexagon-container {
    padding: 0 1rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .hexagon-grid {
    height: 1400px; /* Tall enough for 5 stacked hexagons */
    max-width: 320px;
  }
  
  /* Stack hexagons vertically on mobile */
  .hex-item:nth-child(1) { left: calc(50% - 130px); top: 0; position: absolute !important; }
  .hex-item:nth-child(2) { left: calc(50% - 130px); top: 280px; position: absolute !important; }
  .hex-item:nth-child(3) { left: calc(50% - 130px); top: 560px; position: absolute !important; }
  .hex-item:nth-child(4) { left: calc(50% - 130px); top: 840px; position: absolute !important; }
  .hex-item:nth-child(5) { left: calc(50% - 130px); top: 1120px; position: absolute !important; }
  
  .hex {
    width: 260px;
    height: 260px;
  }
  
  .hex-content h3 {
    font-size: 1.2rem;
  }
  
  /* Hide some of the newer shapes on tablets for cleaner look */
  .shape-35, .shape-38, .shape-44 {
    display: none;
  }
  
  .hex-icon {
    font-size: 3rem;
  }

  .hex-back-content h4 {
    font-size: 1.2rem;
  }

  .hex-back-content p {
    font-size: 0.9rem;
  }
}

/* Innovation Section Styles - Simple Spacer */
.innovation-section {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-blue-gray) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 2rem;
  font-family: 'Helvetica Neue', sans-serif;
  position: relative;
}

.innovation-content {
  max-width: 900px;
  margin: 0 auto;
}

.innovation-section h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.innovation-section p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-light-gray);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Section Styles - Spectacular Modern Design */
.services-section {
  position: relative;
  background: linear-gradient(135deg, 
    var(--color-very-light-gray) 0%, 
    var(--color-white) 50%, 
    var(--color-very-light-gray) 100%
  );
  padding: 2.5rem 0;
  font-family: 'Helvetica Neue', sans-serif;
  overflow: hidden;
}

.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(40, 72, 87, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 72, 87, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s ease-in-out infinite;
}

.services-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-dark-blue-gray), var(--color-light-gray));
  opacity: 0.4;
}

.dot-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 10%;
  animation: floatVertical 15s ease-in-out infinite;
}

.dot-2 {
  width: 12px;
  height: 12px;
  top: 60%;
  right: 15%;
  animation: floatDiagonal 18s ease-in-out infinite;
  animation-delay: 3s;
}

.dot-3 {
  width: 6px;
  height: 6px;
  bottom: 30%;
  left: 25%;
  animation: floatHorizontal 12s ease-in-out infinite;
  animation-delay: 6s;
}

.dot-4 {
  width: 10px;
  height: 10px;
  top: 15%;
  right: 30%;
  animation: floatVertical 20s ease-in-out infinite reverse;
  animation-delay: 9s;
}

.dot-5 {
  width: 14px;
  height: 14px;
  bottom: 20%;
  right: 40%;
  animation: floatDiagonal 16s ease-in-out infinite reverse;
  animation-delay: 12s;
}

.floating-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--color-light-gray), transparent);
  opacity: 0.3;
  height: 1px;
}

.line-1 {
  width: 120px;
  top: 25%;
  left: 5%;
  animation: lineStretch 25s ease-in-out infinite;
}

.line-2 {
  width: 80px;
  top: 70%;
  right: 10%;
  animation: lineStretch 20s ease-in-out infinite reverse;
  animation-delay: 5s;
}

.line-3 {
  width: 100px;
  bottom: 35%;
  left: 60%;
  animation: lineStretch 22s ease-in-out infinite;
  animation-delay: 10s;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-prefix {
  color: var(--color-dark-blue-gray);
  font-weight: 300;
}

.title-main {
  color: var(--color-black);
  font-weight: 700;
  position: relative;
  margin-left: 0.5rem;
}

.title-main::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-dark-blue-gray), var(--color-light-gray));
  border-radius: 2px;
}

.services-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-dark-blue-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(40, 72, 87, 0.08);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.6s; }
.service-card:nth-child(2) { animation-delay: 0.9s; }
.service-card:nth-child(3) { animation-delay: 1.2s; }
.service-card:nth-child(4) { animation-delay: 1.5s; }

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(40, 72, 87, 0.15),
    0 10px 25px rgba(40, 72, 87, 0.1);
  border-color: rgba(40, 72, 87, 0.2);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(40, 72, 87, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .card-glow {
  opacity: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-header {
  margin-bottom: 1rem;
  text-align: center;
}

.service-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}

.service-icon {
  position: relative;
  z-index: 2;
  color: var(--color-dark-blue-gray);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--color-black);
}

.service-card:hover .service-icon svg {
  transform: rotate(5deg);
}


.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(40, 72, 87, 0.05), rgba(208, 208, 208, 0.05));
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
  transform: translate(-50%, -50%) scale(1.2);
  background: linear-gradient(135deg, rgba(40, 72, 87, 0.1), rgba(208, 208, 208, 0.1));
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--color-dark-blue-gray);
}

.service-description {
  margin-bottom: 1rem;
}

.service-description p {
  font-size: 0.9rem;
  color: var(--color-dark-blue-gray);
  line-height: 1.4;
  margin: 0;
  font-weight: 300;
}

.service-features {
  flex: 1;
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.service-card:hover .feature-item {
  opacity: 1;
  transform: translateX(5px);
}

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.15s; }
.feature-item:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(4) { transition-delay: 0.25s; }

.feature-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--color-dark-blue-gray), var(--color-light-gray));
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:hover .feature-dot {
  transform: scale(1.3);
  background: linear-gradient(135deg, var(--color-black), var(--color-dark-blue-gray));
}

.feature-item span {
  font-size: 0.8rem;
  color: var(--color-dark-blue-gray);
  line-height: 1.3;
  font-weight: 400;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.service-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-light-gray);
  background: linear-gradient(135deg, rgba(40, 72, 87, 0.05), rgba(208, 208, 208, 0.05));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-number {
  background: linear-gradient(135deg, var(--color-dark-blue-gray), var(--color-light-gray));
  color: var(--color-white);
  transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes gridDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 20px); }
}

@keyframes floatVertical {
  0%, 100% { transform: translateY(0px); opacity: 0.4; }
  50% { transform: translateY(-20px); opacity: 0.8; }
}

@keyframes floatHorizontal {
  0%, 100% { transform: translateX(0px); opacity: 0.4; }
  50% { transform: translateX(15px); opacity: 0.7; }
}

@keyframes floatDiagonal {
  0%, 100% { transform: translate(0px, 0px); opacity: 0.4; }
  50% { transform: translate(10px, -15px); opacity: 0.8; }
}

@keyframes lineStretch {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  50% { transform: scaleX(1.3); opacity: 0.6; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo Universe Section Styles */
.logo-universe-section {
  padding: 2rem 2rem;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-blue-gray) 50%, var(--color-black) 100%);
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
  position: relative;
  font-family: 'Helvetica Neue', sans-serif;
  min-height: 35vh;
}

/* Cosmic Background Effects */
.cosmic-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.stars-layer {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(241, 241, 241, 0.8), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(241, 241, 241, 0.6), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(241, 241, 241, 0.4), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(241, 241, 241, 0.7), transparent),
    radial-gradient(1px 1px at 160px 30px, rgba(241, 241, 241, 0.5), transparent),
    radial-gradient(1px 1px at 200px 60px, rgba(241, 241, 241, 0.6), transparent),
    radial-gradient(2px 2px at 250px 20px, rgba(241, 241, 241, 0.5), transparent);
  background-repeat: repeat;
  background-size: 300px 200px;
  animation: stars-drift 10s linear infinite, twinkle 2s ease-in-out infinite alternate;
}

.nebula-layer {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(ellipse 400px 300px at 30% 40%, rgba(40, 72, 87, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 300px 400px at 70% 60%, rgba(40, 72, 87, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 500px 200px at 50% 80%, rgba(40, 72, 87, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 200px 300px at 10% 20%, rgba(241, 241, 241, 0.1) 0%, transparent 40%);
  animation: nebula-drift 8s linear infinite, nebula-pulse 3s ease-in-out infinite alternate;
}

.cosmic-rays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* Cosmic rays removed - they appeared as distracting straight lines */
}

/* Add additional cosmic elements */
.cosmic-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle 300px at 20% 30%, rgba(241, 241, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle 400px at 80% 70%, rgba(40, 72, 87, 0.08) 0%, transparent 60%),
    radial-gradient(circle 200px at 60% 20%, rgba(241, 241, 241, 0.02) 0%, transparent 40%),
    radial-gradient(circle 350px at 30% 80%, rgba(40, 72, 87, 0.05) 0%, transparent 45%);
  animation: cosmic-drift-slow 15s linear infinite;
}

.cosmic-background::after {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  right: -25%;
  bottom: -25%;
  width: 150%;
  height: 150%;
  background: 
    linear-gradient(45deg, transparent 0%, rgba(40, 72, 87, 0.01) 20%, transparent 40%, rgba(241, 241, 241, 0.01) 60%, transparent 80%),
    linear-gradient(135deg, transparent 10%, rgba(241, 241, 241, 0.008) 30%, transparent 50%, rgba(40, 72, 87, 0.01) 70%, transparent 90%);
  animation: cosmic-drift-fast 6s linear infinite reverse;
}

/* Universe Content */
.universe-content {
  position: relative;
  z-index: 2;
}

.logo-universe-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: var(--color-white);
  text-wrap: balance;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Logo Universe Container */
.logo-universe {
  position: relative;
  width: 100%;
  height: 300px;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  perspective: 1000px;
}

/* Central Hub (Noemeon) */
.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hub-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 241, 241, 0.3) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hub-core {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 20px rgba(241, 241, 241, 0.5),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--color-light-gray);
  transition: transform 0.3s ease;
}

.hub-core:hover {
  transform: scale(1.1);
}

.hub-core img {
  max-width: 70%;
  max-height: 70%;
  filter: brightness(0.8);
}

/* Planets */
.planet {
  position: absolute;
  width: 70px;
  height: 70px;
  transform-origin: center;
  z-index: 5;
  transition: all 0.3s ease;
}

.planet-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 72, 87, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.planet-core {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-light-gray);
  transition: all 0.3s ease, transform 0.1s ease, opacity 0.3s ease;
  cursor: pointer;
}

.planet:hover .planet-glow {
  opacity: 1;
}

.planet:hover .planet-core {
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(40, 72, 87, 0.6);
}

.planet-core img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 4px;
}

/* Planet Positioning - Free floating layout */
.planet-1 {
  position: absolute;
  top: 25%;
  left: 20%;
  animation: float-gentle 3s ease-in-out infinite, float-drift 4s ease-in-out infinite;
}

.planet-2 {
  position: absolute;
  top: 15%;
  left: 70%;
  animation: float-gentle 2.5s ease-in-out infinite reverse, float-drift 3.5s ease-in-out infinite;
  animation-delay: -0.5s, -1s;
}

.planet-3 {
  position: absolute;
  top: 65%;
  left: 15%;
  animation: float-gentle 3.5s ease-in-out infinite, float-drift 4.5s ease-in-out infinite reverse;
  animation-delay: -1s, -0.3s;
}

.planet-4 {
  position: absolute;
  top: 75%;
  left: 65%;
  animation: float-gentle 4s ease-in-out infinite reverse, float-drift 3s ease-in-out infinite;
  animation-delay: -0.2s, -1.5s;
}

.planet-5 {
  position: absolute;
  top: 45%;
  left: 85%;
  animation: float-gentle 2s ease-in-out infinite, float-drift 5s ease-in-out infinite reverse;
  animation-delay: -0.8s, -0.5s;
}

.planet-6 {
  position: absolute;
  top: 30%;
  left: 5%;
  animation: float-gentle 3.2s ease-in-out infinite reverse, float-drift 3.8s ease-in-out infinite;
  animation-delay: -1.2s, -1s;
}

/* Universe Subtitle */
.universe-subtitle {
  font-size: 1rem;
  color: var(--color-light-gray);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 600px;
  margin: 0 auto;
  text-wrap: balance;
}

/* Animations */
@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes drift {
  0% { transform: translateX(-20px) translateY(-10px); }
  100% { transform: translateX(20px) translateY(10px); }
}

@keyframes cosmic-ray {
  0% { opacity: 0; transform: translateY(-100%) rotate(0deg); }
  25% { opacity: 0.3; transform: translateY(-50%) rotate(2deg); }
  50% { opacity: 1; transform: translateY(0%) rotate(-1deg); }
  75% { opacity: 0.3; transform: translateY(50%) rotate(1deg); }
  100% { opacity: 0; transform: translateY(100%) rotate(0deg); }
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes stars-drift {
  0% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  100% { 
    transform: translate(-50%, -50%) rotate(360deg); 
  }
}

@keyframes nebula-drift {
  0% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  100% { 
    transform: translate(-30%, -20%) rotate(180deg); 
  }
}

@keyframes nebula-pulse {
  0%, 100% { 
    opacity: 0.4; 
    filter: blur(0px);
  }
  50% { 
    opacity: 0.7; 
    filter: blur(1px);
  }
}

@keyframes cosmic-ray-flow {
  0% { 
    transform: translateY(-100%) translateX(0) rotate(0deg); 
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% { 
    transform: translateY(0%) translateX(20px) rotate(2deg); 
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  100% { 
    transform: translateY(100%) translateX(-10px) rotate(-1deg); 
    opacity: 0;
  }
}

@keyframes cosmic-drift-slow {
  0% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  100% { 
    transform: translate(-25%, -25%) rotate(90deg); 
  }
}

@keyframes cosmic-drift-fast {
  0% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
  }
  50% { 
    transform: translate(-15%, -10%) rotate(180deg) scale(1.1); 
  }
  100% { 
    transform: translate(-30%, -20%) rotate(360deg) scale(1); 
  }
}

@keyframes stars-flow {
  0% { 
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0; 
  }
  100% { 
    background-position: -200px -100px, 200px 100px, -100px 200px, 150px -150px, -150px 100px; 
  }
}

@keyframes nebula-flow {
  0% { 
    transform: translateX(-30px) translateY(-20px) rotate(0deg); 
  }
  33% { 
    transform: translateX(20px) translateY(-10px) rotate(120deg); 
  }
  66% { 
    transform: translateX(-10px) translateY(25px) rotate(240deg); 
  }
  100% { 
    transform: translateX(-30px) translateY(-20px) rotate(360deg); 
  }
}

@keyframes float-gentle {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  25% { 
    transform: translate(25px, -30px) rotate(3deg); 
  }
  50% { 
    transform: translate(-15px, -25px) rotate(-2deg); 
  }
  75% { 
    transform: translate(-20px, 15px) rotate(2.5deg); 
  }
}

@keyframes float-drift {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
  }
  50% { 
    transform: translate(10px, -15px) scale(1.05); 
  }
}

@keyframes cosmic-flow {
  0%, 100% { 
    transform: translateX(-15px) translateY(-10px) rotate(0deg); 
    opacity: 0.3;
  }
  25% { 
    transform: translateX(10px) translateY(-20px) rotate(90deg); 
    opacity: 0.6;
  }
  50% { 
    transform: translateX(20px) translateY(15px) rotate(180deg); 
    opacity: 0.4;
  }
  75% { 
    transform: translateX(-5px) translateY(25px) rotate(270deg); 
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-universe-section {
    padding: 1.2rem 1rem;
    min-height: 30vh;
  }
  
  .logo-universe {
    height: 250px;
    max-width: 300px;
  }
  
  .hub-core {
    width: 60px;
    height: 60px;
  }
  
  .hub-glow {
    width: 90px;
    height: 90px;
  }
  
  .planet {
    width: 50px;
    height: 50px;
  }
  
  .planet-glow {
    width: 70px;
    height: 70px;
  }
  
  /* Adjust positions for mobile */
  .planet-1 { top: 20%; left: 25%; }
  .planet-2 { top: 10%; left: 65%; }
  .planet-3 { top: 70%; left: 20%; }
  .planet-4 { top: 80%; left: 70%; }
  .planet-5 { top: 40%; left: 80%; }
  .planet-6 { top: 25%; left: 10%; }
  
  .cosmic-background {
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .logo-universe {
    height: 300px;
    max-width: 280px;
  }
  
  .planet {
    width: 40px;
    height: 40px;
  }
  
  /* Tighter positioning for small screens */
  .planet-1 { top: 25%; left: 30%; }
  .planet-2 { top: 15%; left: 60%; }
  .planet-3 { top: 75%; left: 25%; }
  .planet-4 { top: 70%; left: 65%; }
  .planet-5 { top: 45%; left: 75%; }
  .planet-6 { top: 30%; left: 15%; }
}

/* Accessibility - Reduced motion with gentler animations instead of none */
@media (prefers-reduced-motion: reduce) {
  .stars-layer,
  .nebula-layer,
  .cosmic-background::before,
  .cosmic-background::after {
    animation-duration: 30s !important;
    animation-timing-function: ease-in-out !important;
  }
  
  .hub-glow {
    animation-duration: 8s !important;
  }
  
  .planet {
    animation-duration: 10s !important;
    animation-timing-function: ease-in-out !important;
  }
  
  .planet-core {
    transition: transform 0.2s ease;
  }
}

/* Contact Section Styles */
.contact-section {
  background: var(--color-very-light-gray);
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  border-top: 1px solid var(--color-light-gray);
}

.contact-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.contact-email {
  margin-bottom: 2rem;
}

.contact-email a {
  font-size: 1.3rem;
  color: var(--color-dark-blue-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

/* Footer Logo Styles */
.footer-logo {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
}

.footer-logo img {
  max-height: 50px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  background-color: var(--color-black);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--color-dark-blue-gray);
}

.footer-logo img:hover {
  opacity: 1;
}

/* Responsive adjustments for background effects */
@media screen and (max-width: 768px) {
  .hexagon-section::before {
    background-size: 
      200px 200px,
      200px 200px,
      40px 40px,
      40px 40px;
  }
  
  .geometric-shape {
    opacity: 0.08;
  }
  
  .shape-1, .shape-5, .shape-9, .shape-12 {
    width: 60px;
    height: 60px;
  }
  
  .shape-2, .shape-4, .shape-6, .shape-8, .shape-10 {
    width: 40px;
    height: 40px;
  }
  
  .shape-3, .shape-7, .shape-11 {
    width: 50px;
    height: 50px;
  }
  
  /* Hide some shapes on very small screens to reduce clutter */
  .shape-7, .shape-11, .shape-12, .shape-31, .shape-33, .shape-36, .shape-40, .shape-42, .shape-46, .shape-49 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .geometric-shape {
    opacity: 0.05;
  }
  
  /* Hide additional shapes on very small screens */
  .shape-6, .shape-8, .shape-9, .shape-10, .shape-32, .shape-34, .shape-37, .shape-39, .shape-41, .shape-43, .shape-45, .shape-47, .shape-48, .shape-50 {
    display: none;
  }
}

/* Innovation Section Responsive Design */
@media screen and (max-width: 768px) {
  .innovation-section {
    padding: 2rem 1.5rem;
  }
  
  .innovation-section h2 {
    margin-bottom: 1rem;
  }
}

/* Services Section Responsive Design */
@media screen and (max-width: 1200px) {
  .services-grid {
    gap: 1.2rem;
    max-width: 1000px;
  }
  
  .services-container {
    padding: 0 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
  }
  
  .card-content {
    padding: 2.5rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 3rem 0;
  }
  
  .services-header {
    margin-bottom: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }
  
  .services-container {
    padding: 0 1rem;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .service-icon {
    font-size: 2.5rem;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-description p {
    font-size: 0.95rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  /* Hide some floating elements on mobile for cleaner look */
  .dot-4, .dot-5, .line-2, .line-3 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .services-section {
    padding: 4rem 0;
  }
  
  .services-header {
    margin-bottom: 3rem;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .service-icon {
    font-size: 2.2rem;
  }
  
  .icon-bg {
    width: 60px;
    height: 60px;
  }
  
  /* Hide more floating elements for minimal mobile experience */
  .floating-dot, .floating-line {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid-pattern,
  .floating-dot,
  .floating-line,
  .service-card {
    animation: none;
  }
  
  .service-card {
    opacity: 1;
    transform: none;
  }
  
  .services-header {
    opacity: 1;
    transform: none;
    animation: none;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
}