/* Custom transitions and scroll effects */
html {
    scroll-behavior: smooth;
}

/* Custom range input styling */
input[type=range] {
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: rgba(238, 70, 35, 0.1);
    border-radius: 10px;
}

input[type=range]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #ee4623;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Navbar blur effect on scroll */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee2 {
    animation: marquee 30s linear infinite;
}

.group:hover .animate-marquee,
.group:hover .animate-marquee2 {
    animation-play-state: paused;
}
.site-logo img{
    width: 200px;
    height: auto;
    display: block;
}
@media (max-width: 768px){
    .site-logo img{
        max-height: 45px;
    }
}