    /* Hide Google Translate default banner and widget */
    .goog-te-banner-frame { display: none !important; }
    body { top: 0 !important; }
    .goog-te-gadget { display: none !important; }
    
    .skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}
body {
    top: 0 !important;
}

    /* Animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-fadeIn {
      animation: fadeIn 0.2s ease-out;
    }
    
    
    
/*marqee css*/
  /* Red bold text */
  .note b {
    color: #c62828;           /* vivid red */
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  /* Container for the animated marquee */
  .marquee-wrap {
    background: #0b64d6;      /* blue background */
    color: #ffffff;           /* white text */
    overflow: hidden;
    position: relative;
    border-radius: 6px;
    padding: 0.5rem 0;        /* vertical padding */
    width: 100%;
  }

  /* The moving text */
  .marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;       /* start off-screen to the right */
    will-change: transform;
    animation: marquee-slow 20s linear infinite;
    font-weight: 600;
  }

  /* slow smooth leftward movement */
  @keyframes marquee-slow {
    0%   { transform: translateX(0%); }        /* initial (pushed right by padding-left) */
    100% { transform: translateX(-100%); }    /* move fully left */
  }

  /* Legacy marquee styling */
  .legacy-marquee {
    background: #0b64d6;
    color: #fff;
    padding: 0.5rem 0;
    border-radius: 6px;
    font-weight: 600;
  }

  /* Small responsive tweak */
  @media (prefers-reduced-motion: reduce) {
    .marquee { animation: none; transform: translateX(0); }
  }