/* Custom Styles */

/* Text Stroke Utility for Logo */
.text-stroke-black {
    -webkit-text-stroke: 1px black;
    text-stroke: 1px black;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #F37021 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.swiper-pagination-bullet-active {
    background: #F37021 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.8;
}

/* Scroll Bar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #F37021;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c42;
}

/* Animations */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Smooth Scroll Padding */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
