:root {
  --main-font: 'Inter';
  --blue: #0A2342;
}
 
 body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: var(--main-font);
  }
  
  body {
    background-color: var(--blue);
  }
  
  #loader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
    transition: opacity 1.2s ease, visibility 1s ease;
  }
  
  .loader-content {
    text-align: center;
    color: #fff;
  }
  
  .logo-top {
    width: 700px;
    animation: fadeIn 1.5s ease forwards;
    padding: 0 1rem 2rem;
  }
  
  .load-quote {
    text-align: left !important;
    font-size: 25px;
    font-weight: 400;
    padding: 2rem 1rem;
  }

  .loading-text {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    letter-spacing: 2px;
  }
  
  .loading-icon {
    width: 100px;
    height: auto;
  }
  
  .loading-bar {
    width: 300px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00b4d8, #48cae4);
    border-radius: 20px;
    animation: progressFill 4s forwards;
  }
  
  @keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  #reveal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    overflow: hidden;
    z-index: 9;
  }
  
  .circle {
    position: relative;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 2s ease-in-out;
  }
  
  .reveal-content {
    text-align: left;
    color: #fff;
    opacity: 0;
    transition: opacity 2s ease;
  }
  
  .reveal-content span {
    font-size: 25px;
    font-weight: bold;
  }
  
  .reveal-text {
    font-size: 40px;
    font-weight: 200;
    color: white;
    letter-spacing: 2px;
  }

  #main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease;
  }

@media (max-width: 1200px) {
    .logo-top {
      width: 500px;
    }
  
    .load-quote {
      font-size: 20px;
      padding: 2rem 1rem;
    }
  
    .loading-bar {
      width: 250px;
    }
  
    .reveal-text {
      font-size: 32px;
    }
  
    .reveal-content span {
      font-size: 22px;
    }
  }
  
  @media (max-width: 768px) {
    .logo-top {
      width: 350px;
      padding: 0 1rem 1.5rem;
    }
  
    .load-quote {
      font-size: 18px;
      padding: 1.5rem 1rem;
    }
  
    .loading-text {
      font-size: 1.1rem;
    }
  
    .loading-bar {
      width: 220px;
      height: 8px;
    }
  
    .reveal-text {
      font-size: 28px;
      line-height: 1.4;
    }
  
    .reveal-content span {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .logo-top {
      display: flex;
      justify-content: start;
      width: 250px;
      padding: 0 1rem 1rem;
    }
  
    .load-quote {
      font-size: 16px;
      line-height: 1.4;
      padding: 1rem;
    }
  
    .loading-text {
      font-size: 1rem;
    }
  
    .loading-bar {
      width: 180px;
      height: 6px;
    }
  
    .reveal-text {
      font-size: 22px;
      font-weight: 300;
      line-height: 1.5;
      text-align: center;
      padding: 0 1rem;
    }
  
    .reveal-content span {
      font-size: 18px;
    }
  
    .circle {
      transition: all 2.5s ease-in-out;
    }
  }
  