/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.transform-float {
    animation: float 6s ease-in-out infinite;
}

.hover-rise {
    transition: transform 0.3s ease;
}

.hover-rise:hover {
    transform: translateY(-5px);
}

/* Button & UI Polish */
.btn-primary {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
}

.btn-primary:hover {
    background-color: #5b4cc4;
    border-color: #5b4cc4;
}

.text-primary {
    color: #6c5ce7 !important;
}

.bg-primary {
    background-color: #6c5ce7 !important;
}

/* Tab Scrollbar Hide */
.nav-pills::-webkit-scrollbar {
    height: 4px;
}

.nav-pills::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .navbar-collapse {
        background: #212529;
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
}