.floating-svg-icons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-svg-icons .float-icon {
  position: absolute;
  opacity: 0.06;
  color: #1a5276;
  animation: float-drift 20s ease-in-out infinite;
}

.floating-svg-icons .float-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Positions et tailles variées */
.floating-svg-icons .float-icon:nth-child(1) { top: 12%; left: 5%; width: 48px; height: 48px; animation-delay: 0s; }
.floating-svg-icons .float-icon:nth-child(2) { top: 25%; right: 8%; width: 36px; height: 36px; animation-delay: -3s; }
.floating-svg-icons .float-icon:nth-child(3) { top: 45%; left: 3%; width: 42px; height: 42px; animation-delay: -6s; }
.floating-svg-icons .float-icon:nth-child(4) { top: 60%; right: 12%; width: 32px; height: 32px; animation-delay: -9s; }
.floating-svg-icons .float-icon:nth-child(5) { top: 78%; left: 10%; width: 40px; height: 40px; animation-delay: -12s; }
.floating-svg-icons .float-icon:nth-child(6) { top: 15%; right: 25%; width: 28px; height: 28px; animation-delay: -2s; }
.floating-svg-icons .float-icon:nth-child(7) { top: 55%; left: 18%; width: 34px; height: 34px; animation-delay: -5s; }
.floating-svg-icons .float-icon:nth-child(8) { top: 35%; right: 4%; width: 44px; height: 44px; animation-delay: -8s; }
.floating-svg-icons .float-icon:nth-child(9) { top: 70%; right: 22%; width: 30px; height: 30px; animation-delay: -11s; }
.floating-svg-icons .float-icon:nth-child(10) { top: 8%; left: 22%; width: 38px; height: 38px; animation-delay: -4s; }
.floating-svg-icons .float-icon:nth-child(11) { top: 88%; right: 8%; width: 36px; height: 36px; animation-delay: -7s; }
.floating-svg-icons .float-icon:nth-child(12) { top: 42%; left: 28%; width: 26px; height: 26px; animation-delay: -10s; }

@keyframes float-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(8px, -12px) rotate(2deg); }
  50% { transform: translate(-5px, 8px) rotate(-1deg); }
  75% { transform: translate(12px, 5px) rotate(1deg); }
}

/* Ne pas afficher sur très petits écrans pour éviter le bruit */
@media (max-width: 576px) {
  .floating-svg-icons .float-icon:nth-child(n+7) {
    display: none;
  }
}

/* Garder le contenu au-dessus des icônes flottantes (z-index reste inférieur au menu fixe 99999) */
#inner_banner, .section, .contact-page-section, .footer_style_2, #slider {
  position: relative;
  z-index: 1;
}
#default_header {
  position: relative;
  z-index: 9999;
}
