.nav {
    display: flex;
    justify-content: flex-end;
}
.menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    padding: 1px;
    background: black;
    z-index: 9;
}
.navigation {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 8;
    transform: scaleY(0);
    background: black;
    transform-origin: top;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.2s cubic-bezier(0, 0.32, 0.36, 0.97);
}
.navigator {
    margin: 10px;
    background: transparent;
    font-weight: 90;
    letter-spacing: 0px;
    font-size: 15px;  
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    transition: all 1s linear;
}
.navigation.open {
    transform: scaleY(1);
}
.navigation.open .navigator {
    transform: scaleY(1);
    opacity: 1;
}
.glow {
  font-family: fantasy;
  font-size: 1.3em;
  color: rgba(255, 255, 255, .1);
  background: -webkit-linear-gradient(left, red, orange, yellow, green, blue, indigo, violet);
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  animation-name: colorchange;
  animation-duration: 7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes colorchange {
  0% {
    background-position: right 0px bottom 0px;
  }
  100% {
    background-position: right 10em bottom 0px;
  }
}
@-webkit-keyframes psychedelic {
  0% {
    -webkit-filter: hue-rotate(0deg) saturate(2) invert(0);
  } 
  50% {
    -webkit-filter: hue-rotate(360deg) saturate(8) invert(.25);
  }  
  100% {
    -webkit-filter: hue-rotate(0deg) saturate(2) invert(0);
  }
}

.report-footer{
  position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #000; /* কালো ব্যাকগ্রাউন্ড */
   color: #99e6ff; /* গাঢ় নীলচে সাদা টেক্সট */
   text-align: center;
   padding: 10px 0;
   font-size: 0.55rem;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: #000; /* কালো ব্যাকগ্রাউন্ড */
   color: #99e6ff; /* গাঢ় নীলচে সাদা টেক্সট */
   text-align: center;
   padding: 10px 0;
   font-size: 0.75rem;
}

.footer a {
   color: #66ccff; /* আলাদা নীল হাইপারলিঙ্ক */
   text-decoration: underline;
   transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer a:hover {
   color: #e6ffff; /* hover এ উজ্জ্বল নীল */
   text-shadow: 0 0 4px rgba(0,153,255,0.6);
}
