/* Custom Styles for Fleety */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #59C3FF;
}

/* Animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom button hover effects */
button, a {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Form focus styles */
input:focus {
    outline: none;
}

/* Mobile menu transition */
#mobileMenu {
    transition: all 0.3s ease-in-out;
}

/* Dropdown menu animation */
#downloadDropdown {
    animation: fadeInUp 0.2s ease-in-out;
}

/* Custom gradient text */
.gradient-text {
    background: linear-gradient(135deg, #1FA4FF 0%, #59C3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}