@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

/* Custom Font */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: max(884px, 100dvh);
}

/* Glass Header Effect */
.glass-header {
    background: transparent;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid transparent;
}

.glass-header.scrolled {
    background: rgba(16, 22, 34, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(18, 88, 226, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #101622; 
}
::-webkit-scrollbar-thumb {
    background: #1258e2; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}


@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Text Stroke Effect */
.transparent-text-stroke {
    -webkit-text-stroke: 2px #1258e2; /* Fallback color */
    -webkit-text-stroke: 2px currentColor;
    color: transparent;
    /* Optional: Add a subtle glow */
    text-shadow: 0 0 10px rgba(18, 88, 226, 0.3);
}

/* Preloader & Shimmer Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Comparison Slider Handle */
#slider-handle {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}