.glowing {
    box-shadow: 0 0 10px rgba(57, 123, 230, 0.7);
    transition: box-shadow 0.3s ease-in-out;
}

.glowing:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 1);
    transform: scale(1.05);
}


.marquee {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;



    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}

/* Wrapper for the progress bar */
.w-full {
    position: relative;
    overflow: hidden;
}

/* Progress Bar with Gradient Stripes */
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* color: #fff; */
    text-align: center;
    white-space: nowrap;
    width: 96%; /* Example width, will be updated dynamically */
    z-index: 10;
    overflow: hidden;

    /* Gradient Stripe Background */
    background-size: 30px 30px;
    background-image: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.1) 75%,
        transparent 75%,
        transparent
    );

    /* Animation */
    animation: animate-stripes 3s linear infinite;
}

/* Stripe animation keyframes */
@keyframes animate-stripes {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 30px 30px;
    }
}

.raven-button-overlay {
    background-image: linear-gradient(90deg, #009C1A, #00EF27, #009C1A, #009C1A, #00EF27);
    background-size: 400% 100%;
    animation: AnimatedGradientBgLeft 6s infinite;

}

.red-button-overlay {
    background-image: linear-gradient(90deg, #B22222, #FF6347, #B22222, #B22222, #FF6347);
background-size: 400% 100%;
animation: AnimatedGradientBgLeft 6s infinite;

}

.tng-button-gradient {
    background-image: linear-gradient(90deg, #007BFF, #00BFFF, #007BFF, #007BFF, #00BFFF);
    background-size: 400% 100%;
    animation: AnimatedGradientBgLeft 6s infinite;
}

.raven-button-overlay:hover {
    box-shadow: 0 0 20px rgba(0, 255, 0, 1);
    /* Green color for the glowing effect */
    transform: scale(1.05);
}

/* Optional animation definition */
@keyframes AnimatedGradientBgLeft {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

html,
body {
    overflow-x: hidden;
    /* Ensure no horizontal scroll */
}

body[page="home"] .floating-whatsapp {
    display: block;
}
body {
  background-color: #121212 !important;
  color: #f0f0f0 !important;
}

.floating-telegram img {
    width: 100%;
}
.floating-telegram {
    position: fixed;
    width: 25px;
    bottom: 100px;
    right: 0px;
    z-index: 1;
}
.floating-whatsapp img {
    width: 100%;
}
.floating-whatsapp {
    position: fixed;
    width: 25px;
    bottom: 210px;
    right: 0px;
    z-index: 1;
}
.floating-tiktok img {
    width: 100%;
	height:120px;
}
.floating-tiktok {
    position: fixed;
    width: 40px;
    bottom: 320px;
    right: 0px;
    z-index: 1;
    animation: movemove 20s infinite;
}

@keyframes movemove{
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-300px); }
    100% { transform: translateY(300px); }
}

.floating-tips {
    position: fixed;
    width: 50px;
    bottom: 320px;
    right: 5px;
    z-index: 1;
    animation: movemove 20s infinite;
}
@keyframes movemove{
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-300px); }
    100% { transform: translateY(300); }
}
.floating-tips img {
    width: 300%;
}

body {
    font-family: "Lato", sans-serif;
    transition: margin-left .5s;
    padding: 0;
    margin: 0;
}

.sidenav {  
    height: 100%;
    width: 250px;
    position: fixed;
    z-index:3;
    top: 0;
    left: -250px;
    background-color: #FFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;

}

.open{
    right: calc(100% - 250px);
}

.dropdown-btn
{
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    font-family: "Lato", sans-serif;
}

.sidenav a ,.dropdown-btn{
text-decoration: none;
font-size: 19px;
color: #4D4D4D;
display: flex;
font-weight: 700;
gap: 10px;
flex-direction: row;
align-items: center;
}

.mybox
{
    padding-left: 10px;
    padding-right: 10px;
}

.sidenav a:hover {
    color: #EC7c25;
    background-color: #FFE6c7;
    border-radius: 8px;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* .openbtn {
    font-size: 20px;
    cursor: pointer;
    color: black;
    padding-left: 10px;
    border: none;
    margin: 5px;
    position: fixed;
    z-index: 2;
} */

.openbtn:hover {
    background-color: #FFE6c7;
    border-radius: 8px;
}

.logo {
    height: 46px;
    margin: 5px auto;
}


/* .active {
    background-color: #FFE6c7;
    color: #EC7c25;
    border-radius: 8px;
} */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}


.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff0000;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 24px;
  line-height: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

#seeMoreContent {
    max-height: 50px; /* or adjust for your default collapsed height */
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#seeMoreContent.expanded {
    max-height: 5000px; /* adjust as needed to fit all content when expanded */
}