.mil-preloader {
    position: fixed;
    inset: 0;
    background: #f0fcff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .tech-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .tech-bg circle {
    fill: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
  }
  
  .tech-bg circle:nth-child(2) {
    animation-delay: 1s;
  }
  .tech-bg circle:nth-child(3) {
    animation-delay: 2s;
  }
  .tech-bg circle:nth-child(4) {
    animation-delay: 3s;
  }
  .tech-bg circle:nth-child(5) {
    animation-delay: 4s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .mil-preloader-inner {
    position: relative;
    z-index: 2;
  }
  
  .mil-loader-spinner {
    width: 120px;
    height: 120px;
    border: 6px solid rgba(235, 204, 190, 0.2);
    border-top: 6px solid #2604e7;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  .mil-loader-logo img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  