/* Custom styles for glassmorphism and smooth animations */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, #005FC6, #32CCC1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Style for the select dropdown options */
select option {
    background-color: #0B3C5D;
    color: white;
}

/* Marquee Animation */
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    animation: scroll-marquee 40s linear infinite;
    width: max-content;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
