/* Custom Styles for Codesate */

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

/* Glassmorphism Header */
header.sticky {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Selection Color */
::selection {
    background-color: #3B82F6;
    color: white;
}

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

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3B82F6;
}

/* Form Styles */
input::placeholder,
textarea::placeholder {
    color: #475569;
}

/* Animations */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slow-float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

.animate-watermark {
    animation: slow-float 10s ease-in-out infinite;
}

.service-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Mobile Menu Helper */
#mobile-menu.active {
    transform: translateX(0);
}

/* Lucide Icon size helper */
.lucide {
    width: 24px;
    height: 24px;
}

/* Preloader Fade Out */
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Custom Cursor (Optional premium touch) */
@media (min-width: 1024px) {
    /* Potential custom cursor classes could go here if needed */
}