:root {
  --primary-font-color: #FF8C00;
  --primary-color: #FF8C00;
  --text-color: #333;
  --shadow-color: rgba(0, 0, 0, 0.1);
}  
  
            .navigation {
              
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background: rgba(255, 255, 255, 0.93);
      backdrop-filter: blur(10px);
      border-radius: 20px 20px 0 0;
      box-shadow: 0 -8px 15px 
      rgba(168, 165, 165, 0.29);
      transition: all 0.3s ease;
      position: fixed;
      
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1001
    }

    .nav-item {
      text-decoration: none;
      color: var(--text-color);
      font-size: 0.8rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.3s ease;
      
      z-index: 99999;
    }

    .nav-item:hover {
      color: var(--primary-color);
      transform: translateY(-3px)
    }
    .nav-active {
      color: #FF8C00;
      transform: translateY(-3px)
      
    }
    .nav-item i {
      font-size: 1.2rem;
      margin-bottom: 3px
      
    }
.spiritual-particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
    }

    .particle {
        position: absolute;
        background-color: var(--primary-color);
        border-radius: 50%;
        opacity: 0.3;
        animation: float 9s infinite ease-in-out;
    }

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