/* Modern Custom Styles for Sky Vow Solutions */

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

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #14B8A6, #0F766E);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0F766E, #14B8A6);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #14B8A6;
    outline-offset: 2px;
}

/* Form input focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
    border-color: #14B8A6;
}

/* Modern animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid pattern background */
.bg-grid-pattern {
    background-image: 
        linear-gradient(to right, rgba(20, 184, 166, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(20, 184, 166, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Print styles */
@media print {
    nav,
    footer,
    .no-print {
        display: none;
    }
}

