/* Custom styling for Trip Designer Kashmir */
.hero-banner {
    background-image: url('images/hero-view.jpg');
    background-size: cover;
    background-position: center;
}

html {
    scroll-behavior: smooth;
}

/* Continuous Left Marquee Animation for Reviews */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    animation: slideLeft 22s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #16a34a;
    border-radius: 4px;
}

/* 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 */
}
