.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .loader {
    width: 100px;
    height: 100px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    padding: 10px;
  }

  .loader img {
    width: 100%;
    height: auto;
    animation: zoom 1.5s ease-in-out infinite;
    position: relative;
    z-index: 3;
    border-radius: 50%;
  }

  /* Enhanced Indian Flag Color Shadow */
  .loader::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: linear-gradient(135deg, 
      #FF9933 0%, 
      #FF9933 33%, 
      #FFFFFF 33%, 
      #FFFFFF 66%, 
      #138808 66%, 
      #138808 100%);
    filter: blur(15px);
    z-index: 1;
    animation: pulseShadow 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
  }

  /* Additional glow effect */
  .loader::after {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    border-radius: 50%;
    background: linear-gradient(135deg, 
      rgba(255, 153, 51, 0.3) 0%, 
      rgba(255, 255, 255, 0.3) 50%, 
      rgba(19, 136, 8, 0.3) 100%);
    filter: blur(25px);
    z-index: 0;
    animation: glowPulse 2s ease-in-out infinite alternate;
  }

  @keyframes zoom {
    0%, 100% {
      transform: scale(1) rotate(0deg);
    }
    50% {
      transform: scale(1.15) rotate(2deg);
    }
  }

  @keyframes pulseShadow {
    0%, 100% {
      transform: scale(1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1.15);
      opacity: 1;
    }
  }

  @keyframes glowPulse {
    0% {
      opacity: 0.5;
    }
    100% {
      opacity: 0.8;
    }
  }

  .loader-text {
    margin-top: 40px;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    animation: fade 1.8s ease-in-out infinite;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.3),
                 0 0 5px rgba(255, 255, 255, 0.3),
                 0 0 15px rgba(19, 136, 8, 0.3);
    letter-spacing: 1px;
  }

  .loader-text::after {
    content: attr(data-translate);
    position: absolute;
    top: 3px;
    left: 3px;
    background: linear-gradient(135deg, 
      #FF9933 0%, 
      #FFFFFF 50%, 
      #138808 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: -1;
    filter: blur(3px);
    opacity: 0.7;
  }

  @keyframes fade {
    0%, 100% {
      transform: translateY(0);
      opacity: 0.9;
    }
    50% {
      transform: translateY(-5px);
      opacity: 1;
    }
  }