/* Custom Geometric Styles */
.clip-path-slant {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.animate-bounce-slow {
    animation: float 3s ease-in-out infinite;
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    border-color: #5EEAD4;
    box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0F172A;
}
::-webkit-scrollbar-thumb {
    background: #1E3A8A;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #14B8A6;
}
