
  
  .news-text {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.6s ease;
  }
  
  .news-text.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .news-text.hide {
    opacity: 0;
    transform: translateY(100%);
  }
  

  .news-pill {
    display: flex;
    align-items: center;        /* vertical centering */
    justify-content: flex-start; /* label left, text right */
    border: 1px solid #000;
    border-radius: 50px;
    padding: 0 15px;            /* remove extra top/bottom padding */
    width: 600px;
    height: 45px;               /* slightly taller pill */
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    box-sizing: border-box;     /* consistent sizing */
  }
  
  /* Mobile version */
    @media (max-width: 768px) {
      .news-pill {
          margin-top: 18px;
        width: 320px;
        font-size: 10px;
      }
    }
    
    
    /* Mobile version */
    @media (max-width: 420px) {
      .news-pill {
          margin-top: 18px;
        width: 320px;
        font-size: 10px;
      }
    }
    
    /* Mobile version */
    @media (max-width: 360px) {
      .news-pill {
          margin-top: 18px;
        width: 320px;
        font-size: 10px;
      }
    }
    
    
.img-fluid-app{
  max-width: 450px;
    height: auto;
    margin-left: 28px;
}


.banner-bg-yellow{

  background-color: #ffcb5c !important;

}

.banner-bg-lite-dark{

  background-color: #2fbeff !important

}


.banner-bg-red{

  background-color: #c00a0a !important;

}


.banner-bg-black{

  background-color: #000000 !important;

}


.banner-bg-light-green{

  background-color: #6effff !important;

}

.banner-bg-blue{

  background-color: #3b2dfa !important;

}

.banner-bg-green {

  background-color: #5cff7f !important;

}

    .gradient-border-green {
      --border-color-top: #23ff1f;
  }


  .button-footer {
    
    color: #fff;
    padding: 14px 0;
    
    font-family: Arial, sans-serif;
  }
  
  /* Popup CSS */
.popup {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.popup-content {
  background-color: #fff;
  color: #111;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  font-size: 16px;
}

/* OK button */
.ok-btn {
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.ok-btn:hover {
  background-color: #333;
}

  .footer-payments {
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically if needed */
    flex-wrap: wrap;         /* wrap on small screens */
    margin-bottom: 20px;
  }
  
  .footer-downloads a {
    margin: 10px;
    transition: transform 0.3s;
  }
  
  .footer-downloads a:hover {
    transform: scale(1.05);
  }
  
  
  
  .footer-payments img {
    height: 40px;
    margin: 10px;
  }
  
  .site-footer p {
    margin-top: 20px;
    font-size: 14px;
  }

  .footer-downloads img {
    height: 40px; /* smaller height */
    
  }
  
  .footer-payments img {
    height: 30px; /* smaller payment logos */
    margin: 0 8px;
  }
  
  /* Hover effect (optional) */
  .footer-downloads a:hover {
    transform: scale(1.05);
  }




  
  /* Responsive */
  @media screen and (max-width: 600px) {
    .footer-downloads img,
    .footer-payments img {
      height: 40px;
    }
  
    .site-footer p {
      font-size: 12px;
    }
  }












  .text-light-lighten {
    --bs-text-opacity: 1;
    color: rgb(103 223 237) !important;
}
  
    .am-core{
      place-items: center;
      animation-name: rotate;
      animation-duration: 10s;
      animation-iteration-count: infinite;
      animation-timing-function: linear;
      border-radius: 50%;
  }

  @keyframes rotate{
    from{ transform: rotate(180deg); }
    to{ transform: rotate(360deg); }
}


  
  .news-label {
    background: #01422f;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    align-items: center;        /* center text inside green pill */
    height: 70%;                /* fit nicely inside parent */
  }
  
  #news-box {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-left: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
  }
  
  
  
  
  
  
  