/* Gudique Custom Theme Styles */
:root {
    --primary-color: #1a56db;
    --secondary-color: #1441b4;
    --accent-color: #00d285;
}

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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Background Grid Pattern */
.bg-grid-pattern {
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(26, 86, 219, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26, 86, 219, 0.04) 1px, transparent 1px);
}

/* Card hover lifts */
.card-hover {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(26, 86, 219, 0.12);
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.dark-glass-panel {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, #1a56db 0%, #307eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
